All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.stargate.sgv2.graphql.schema.graphqlfirst.fetchers.deployed.MutationPayload Maven / Gradle / Ivy

There is a newer version: 2.0.0-ALPHA-17
Show newest version
/*
 * Copyright The Stargate Authors
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 * http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */
package io.stargate.sgv2.graphql.schema.graphqlfirst.fetchers.deployed;

import io.stargate.bridge.proto.QueryOuterClass.Query;
import java.util.Collections;
import java.util.List;
import java.util.function.Function;

/**
 * Abstract the queries needed to process a mutation operation, and how the results will be turned
 * into a GraphQL response.
 */
class MutationPayload {

  private final List queries;
  private final List> primaryKeys;
  private final Function, ResultT> resultBuilder;

  MutationPayload(
      List queries,
      List> primaryKeys,
      Function, ResultT> resultBuilder) {
    this.queries = queries;
    this.primaryKeys = primaryKeys;
    this.resultBuilder = resultBuilder;
  }

  MutationPayload(
      Query query,
      List primaryKey,
      Function, ResultT> resultBuilder) {
    this(Collections.singletonList(query), Collections.singletonList(primaryKey), resultBuilder);
  }

  /**
   * The queries to execute.
   *
   * 

Note that this will generally be a singleton; bulk inserts are currently the only case where * there can be multiple queries. */ List getQueries() { return queries; } /** * The primary key impacted by each query (in the same order as the queries). * *

Note that this is only needed if the payload will be executed as part of a conditional * batch. So for queries that target more than one row (and therefore can't be used in a * conditional batch), it can be left empty. */ List> getPrimaryKeys() { return primaryKeys; } Function, ResultT> getResultBuilder() { return resultBuilder; } }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy