Class CTP_AnotherMutationType_CTS

java.lang.Object
org.junittest.allgraphqlcases_client_springconfiguration.AnotherMutationTypeExecutorMySchema
org.junittest.allgraphqlcases_client_springconfiguration.CTP_AnotherMutationType_CTS
All Implemented Interfaces:
GraphQLMutationExecutor, GraphQLRequestObject
Direct Known Subclasses:
AnotherMutationTypeResponse

public class CTP_AnotherMutationType_CTS extends AnotherMutationTypeExecutorMySchema implements GraphQLRequestObject
A mono line description for AnotherMutationType This class contains the response for a full request. See the plugin web site for more information on full and partial requests.
It also allows access to the _extensions_ part of the response. Take a look at the GraphQL spec for more information on this.
Author:
generated by graphql-java-generator
See Also:
  • Constructor Details

    • CTP_AnotherMutationType_CTS

      public CTP_AnotherMutationType_CTS()
  • Method Details

    • setCreateHuman

      public void setCreateHuman(CTP_Human_CTS createHuman)
    • getCreateHuman

      public CTP_Human_CTS getCreateHuman()
    • setCreateAllFieldCases

      public void setCreateAllFieldCases(CTP_AllFieldCases_CTS createAllFieldCases)
    • getCreateAllFieldCases

      public CTP_AllFieldCases_CTS getCreateAllFieldCases()
    • setDeleteSnacks

      public void setDeleteSnacks(Boolean deleteSnacks)
      Tests for issue 51
    • getDeleteSnacks

      public Boolean getDeleteSnacks()
      Tests for issue 51
    • setIf

      public void setIf(String _if)
      test for issue #139 (use of java reserved keyword)
    • getIf

      public String getIf()
      test for issue #139 (use of java reserved keyword)
    • setImplements

      public void setImplements(String _implements)
    • getImplements

      public String getImplements()
    • set__typename

      public void set__typename(String __typename)
    • get__typename

      public String get__typename()
    • setAliasValue

      public void setAliasValue(String aliasName, Object aliasDeserializedValue)
      This method is called during the json deserialization process, by the GraphQLObjectMapper, each time an alias value is read from the json.
      Parameters:
      aliasName -
      aliasDeserializedValue -
    • getAliasValue

      public Object getAliasValue(String alias)
      Retrieves the value for the given alias, as it has been received for this object in the GraphQL response.
      This method should not be used for Custom Scalars, as the parser doesn't know if this alias is a custom scalar, and which custom scalar to use at deserialization time. In most case, a value will then be provided by this method with a basis json deserialization, but this value won't be the proper custom scalar value.
      Parameters:
      alias -
      Returns:
    • toString

      public String toString()
      Overrides:
      toString in class Object
    • builder

      public static CTP_AnotherMutationType_CTS.Builder builder()
    • getExtensions

      public com.fasterxml.jackson.databind.JsonNode getExtensions()
    • setExtensions

      public void setExtensions(com.fasterxml.jackson.databind.JsonNode extensions)
      Specified by:
      setExtensions in interface GraphQLRequestObject
    • getExtensionsAsMap

      public Map<String,com.fasterxml.jackson.databind.JsonNode> getExtensionsAsMap()
      Returns the extensions as a map. The values can't be deserialized, as their type is unknown.
      Returns:
    • getExtensionsField

      public <T> T getExtensionsField(String key, Class<T> t) throws com.fasterxml.jackson.core.JsonProcessingException
      Parse the value for the given _key_, as found in the extensions field of the GraphQL server's response, into the given _t_ class.
      Type Parameters:
      T -
      Parameters:
      key -
      t -
      Returns:
      null if the key is not in the extensions map. Otherwise: the value for this _key_, as a _t_ instance
      Throws:
      com.fasterxml.jackson.core.JsonProcessingException - When there is an error when converting the key's value into the _t_ class
    • execWithBindValues

      @Deprecated public AnotherMutationTypeResponse execWithBindValues(String queryResponseDef, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      execWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the mutation, in the native GraphQL format (see here above). It must omit the mutation keyword, and start by the first { that follows. It may contain directives, as explained in the GraphQL specs.
      parameters - The map of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map. The key is the parameter name, as declared in the request you defined (in the above sample: param is an optional parameter and skip is a mandatory one). The value is the parameter value in its Java type (for instance a Date for the GraphQLScalarTypeDate). The parameters which value is missing in this map will be ignored.
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • exec

      @Deprecated public AnotherMutationTypeResponse exec(String queryResponseDef, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      exec in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above). It must omit the mutation keyword, and start by the first { that follows. It may contain directives, as explained in the GraphQL specs.
      paramsAndValues - This parameter contains all the name and values for the Bind Variables defined in the objectResponse parameter, that must be sent to the server. Optional parameter may not have a value. They will be ignored and not sent to the server. Mandatory parameter must be provided in this argument.
      This parameter contains an even number of parameters: it must be a series of name and values : (paramName1, paramValue1, paramName2, paramValue2...)
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • execWithBindValues

      @Deprecated public AnotherMutationTypeResponse execWithBindValues(com.graphql_java_generator.client.request.ObjectResponse objectResponse, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      execWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.getGraphQLRequest(java.lang.String) method or one of the getXxxxGraphQLRequest(String) methods.
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • exec

      @Deprecated public AnotherMutationTypeResponse exec(com.graphql_java_generator.client.request.ObjectResponse objectResponse, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      exec in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.getGraphQLRequest(java.lang.String) method or one of the getXxxxGraphQLRequest(String)
      paramsAndValues - This parameter contains all the name and values for the Bind Variables defined in the objectResponse parameter, that must be sent to the server. Optional parameter may not have a value. They will be ignored and not sent to the server. Mandatory parameter must be provided in this argument.
      This parameter contains an even number of parameters: it must be a series of name and values : (paramName1, paramValue1, paramName2, paramValue2...)
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • getResponseBuilder

      @Deprecated public com.graphql_java_generator.client.request.Builder getResponseBuilder() throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      getResponseBuilder in class AnotherMutationTypeExecutorMySchema
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • getGraphQLRequest

      @Deprecated public GraphQLRequestMySchema getGraphQLRequest(String fullRequest) throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      getGraphQLRequest in class AnotherMutationTypeExecutorMySchema
      Parameters:
      fullRequest - The full GraphQL Request, as specified in the GraphQL specification
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • createHumanWithBindValues

      @Deprecated public CTP_Human_CTS createHumanWithBindValues(String queryResponseDef, CINP_HumanInput_CINS human, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      createHumanWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above)
      human - Parameter for the createHuman field of AnotherMutationType, as defined in the GraphQL schema
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • createHuman

      @Deprecated public CTP_Human_CTS createHuman(String queryResponseDef, CINP_HumanInput_CINS human, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      createHuman in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above)
      human - Parameter for the createHuman field of AnotherMutationType, as defined in the GraphQL schema
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • createHumanWithBindValues

      @Deprecated public CTP_Human_CTS createHumanWithBindValues(com.graphql_java_generator.client.request.ObjectResponse objectResponse, CINP_HumanInput_CINS human, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      createHumanWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.getCreateHumanGraphQLRequest(java.lang.String) method.
      human - Parameter for the createHuman field of AnotherMutationType, as defined in the GraphQL schema
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • createHuman

      @Deprecated public CTP_Human_CTS createHuman(com.graphql_java_generator.client.request.ObjectResponse objectResponse, CINP_HumanInput_CINS human, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      createHuman in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.getCreateHumanGraphQLRequest(java.lang.String) method.
      human - Parameter for the createHuman field of AnotherMutationType, as defined in the GraphQL schema
      paramsAndValues - This parameter contains all the name and values for the Bind Variables defined in the objectResponse parameter, that must be sent to the server. Optional parameter may not have a value. They will be ignored and not sent to the server. Mandatory parameter must be provided in this argument.
      This parameter contains an even number of parameters: it must be a series of name and values : (paramName1, paramValue1, paramName2, paramValue2...)
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • getCreateHumanResponseBuilder

      @Deprecated public com.graphql_java_generator.client.request.Builder getCreateHumanResponseBuilder() throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      getCreateHumanResponseBuilder in class AnotherMutationTypeExecutorMySchema
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • getCreateHumanGraphQLRequest

      @Deprecated public GraphQLRequestMySchema getCreateHumanGraphQLRequest(String partialRequest) throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      getCreateHumanGraphQLRequest in class AnotherMutationTypeExecutorMySchema
      Parameters:
      partialRequest - The Partial GraphQL request, as explained in the plugin client documentation
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • createAllFieldCasesWithBindValues

      @Deprecated public CTP_AllFieldCases_CTS createAllFieldCasesWithBindValues(String queryResponseDef, CINP_AllFieldCasesInput_CINS input, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      createAllFieldCasesWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above)
      input - Parameter for the createAllFieldCases field of AnotherMutationType, as defined in the GraphQL schema
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • createAllFieldCases

      @Deprecated public CTP_AllFieldCases_CTS createAllFieldCases(String queryResponseDef, CINP_AllFieldCasesInput_CINS input, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      createAllFieldCases in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above)
      input - Parameter for the createAllFieldCases field of AnotherMutationType, as defined in the GraphQL schema
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • createAllFieldCasesWithBindValues

      @Deprecated public CTP_AllFieldCases_CTS createAllFieldCasesWithBindValues(com.graphql_java_generator.client.request.ObjectResponse objectResponse, CINP_AllFieldCasesInput_CINS input, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      createAllFieldCasesWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.getCreateAllFieldCasesGraphQLRequest(java.lang.String) method.
      input - Parameter for the createAllFieldCases field of AnotherMutationType, as defined in the GraphQL schema
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • createAllFieldCases

      @Deprecated public CTP_AllFieldCases_CTS createAllFieldCases(com.graphql_java_generator.client.request.ObjectResponse objectResponse, CINP_AllFieldCasesInput_CINS input, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      createAllFieldCases in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.getCreateAllFieldCasesGraphQLRequest(java.lang.String) method.
      input - Parameter for the createAllFieldCases field of AnotherMutationType, as defined in the GraphQL schema
      paramsAndValues - This parameter contains all the name and values for the Bind Variables defined in the objectResponse parameter, that must be sent to the server. Optional parameter may not have a value. They will be ignored and not sent to the server. Mandatory parameter must be provided in this argument.
      This parameter contains an even number of parameters: it must be a series of name and values : (paramName1, paramValue1, paramName2, paramValue2...)
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • getCreateAllFieldCasesResponseBuilder

      @Deprecated public com.graphql_java_generator.client.request.Builder getCreateAllFieldCasesResponseBuilder() throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      getCreateAllFieldCasesResponseBuilder in class AnotherMutationTypeExecutorMySchema
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • getCreateAllFieldCasesGraphQLRequest

      @Deprecated public GraphQLRequestMySchema getCreateAllFieldCasesGraphQLRequest(String partialRequest) throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      getCreateAllFieldCasesGraphQLRequest in class AnotherMutationTypeExecutorMySchema
      Parameters:
      partialRequest - The Partial GraphQL request, as explained in the plugin client documentation
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • deleteSnacksWithBindValues

      @Deprecated public Boolean deleteSnacksWithBindValues(String queryResponseDef, List<String> id, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      Tests for issue 51 This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      deleteSnacksWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above)
      id - Parameter for the deleteSnacks field of AnotherMutationType, as defined in the GraphQL schema
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • deleteSnacks

      @Deprecated public Boolean deleteSnacks(String queryResponseDef, List<String> id, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      Tests for issue 51 This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      deleteSnacks in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above)
      id - Parameter for the deleteSnacks field of AnotherMutationType, as defined in the GraphQL schema
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • deleteSnacksWithBindValues

      @Deprecated public Boolean deleteSnacksWithBindValues(com.graphql_java_generator.client.request.ObjectResponse objectResponse, List<String> id, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      Tests for issue 51 This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      deleteSnacksWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.getDeleteSnacksGraphQLRequest(java.lang.String) method.
      id - Parameter for the deleteSnacks field of AnotherMutationType, as defined in the GraphQL schema
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • deleteSnacks

      @Deprecated public Boolean deleteSnacks(com.graphql_java_generator.client.request.ObjectResponse objectResponse, List<String> id, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      Tests for issue 51 This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      deleteSnacks in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.getDeleteSnacksGraphQLRequest(java.lang.String) method.
      id - Parameter for the deleteSnacks field of AnotherMutationType, as defined in the GraphQL schema
      paramsAndValues - This parameter contains all the name and values for the Bind Variables defined in the objectResponse parameter, that must be sent to the server. Optional parameter may not have a value. They will be ignored and not sent to the server. Mandatory parameter must be provided in this argument.
      This parameter contains an even number of parameters: it must be a series of name and values : (paramName1, paramValue1, paramName2, paramValue2...)
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • getDeleteSnacksResponseBuilder

      @Deprecated public com.graphql_java_generator.client.request.Builder getDeleteSnacksResponseBuilder() throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      Tests for issue 51 This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      getDeleteSnacksResponseBuilder in class AnotherMutationTypeExecutorMySchema
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • getDeleteSnacksGraphQLRequest

      @Deprecated public GraphQLRequestMySchema getDeleteSnacksGraphQLRequest(String partialRequest) throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      Tests for issue 51 This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      getDeleteSnacksGraphQLRequest in class AnotherMutationTypeExecutorMySchema
      Parameters:
      partialRequest - The Partial GraphQL request, as explained in the plugin client documentation
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • _ifWithBindValues

      @Deprecated public String _ifWithBindValues(String queryResponseDef, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      test for issue #139 (use of java reserved keyword) This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      _ifWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above)
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • _if

      @Deprecated public String _if(String queryResponseDef, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      test for issue #139 (use of java reserved keyword) This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      _if in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above)
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • _ifWithBindValues

      @Deprecated public String _ifWithBindValues(com.graphql_java_generator.client.request.ObjectResponse objectResponse, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      test for issue #139 (use of java reserved keyword) This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      _ifWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.getIfGraphQLRequest(java.lang.String) method.
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • _if

      @Deprecated public String _if(com.graphql_java_generator.client.request.ObjectResponse objectResponse, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      test for issue #139 (use of java reserved keyword) This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      _if in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.getIfGraphQLRequest(java.lang.String) method.
      paramsAndValues - This parameter contains all the name and values for the Bind Variables defined in the objectResponse parameter, that must be sent to the server. Optional parameter may not have a value. They will be ignored and not sent to the server. Mandatory parameter must be provided in this argument.
      This parameter contains an even number of parameters: it must be a series of name and values : (paramName1, paramValue1, paramName2, paramValue2...)
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • getIfResponseBuilder

      @Deprecated public com.graphql_java_generator.client.request.Builder getIfResponseBuilder() throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      test for issue #139 (use of java reserved keyword) This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      getIfResponseBuilder in class AnotherMutationTypeExecutorMySchema
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • getIfGraphQLRequest

      @Deprecated public GraphQLRequestMySchema getIfGraphQLRequest(String partialRequest) throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      test for issue #139 (use of java reserved keyword) This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      getIfGraphQLRequest in class AnotherMutationTypeExecutorMySchema
      Parameters:
      partialRequest - The Partial GraphQL request, as explained in the plugin client documentation
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • _implementsWithBindValues

      @Deprecated public String _implementsWithBindValues(String queryResponseDef, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      _implementsWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above)
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • _implements

      @Deprecated public String _implements(String queryResponseDef, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      _implements in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above)
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • _implementsWithBindValues

      @Deprecated public String _implementsWithBindValues(com.graphql_java_generator.client.request.ObjectResponse objectResponse, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      _implementsWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.getImplementsGraphQLRequest(java.lang.String) method.
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • _implements

      @Deprecated public String _implements(com.graphql_java_generator.client.request.ObjectResponse objectResponse, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      _implements in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.getImplementsGraphQLRequest(java.lang.String) method.
      paramsAndValues - This parameter contains all the name and values for the Bind Variables defined in the objectResponse parameter, that must be sent to the server. Optional parameter may not have a value. They will be ignored and not sent to the server. Mandatory parameter must be provided in this argument.
      This parameter contains an even number of parameters: it must be a series of name and values : (paramName1, paramValue1, paramName2, paramValue2...)
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • getImplementsResponseBuilder

      @Deprecated public com.graphql_java_generator.client.request.Builder getImplementsResponseBuilder() throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      getImplementsResponseBuilder in class AnotherMutationTypeExecutorMySchema
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • getImplementsGraphQLRequest

      @Deprecated public GraphQLRequestMySchema getImplementsGraphQLRequest(String partialRequest) throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      getImplementsGraphQLRequest in class AnotherMutationTypeExecutorMySchema
      Parameters:
      partialRequest - The Partial GraphQL request, as explained in the plugin client documentation
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • __typenameWithBindValues

      @Deprecated public String __typenameWithBindValues(String queryResponseDef, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      __typenameWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above)
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • __typename

      @Deprecated public String __typename(String queryResponseDef, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException, com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      __typename in class AnotherMutationTypeExecutorMySchema
      Parameters:
      queryResponseDef - The response definition of the query, in the native GraphQL format (see here above)
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
      com.graphql_java_generator.exception.GraphQLRequestPreparationException - When an error occurs during the request preparation, typically when building the ObjectResponse
    • __typenameWithBindValues

      @Deprecated public String __typenameWithBindValues(com.graphql_java_generator.client.request.ObjectResponse objectResponse, Map<String,Object> parameters) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      __typenameWithBindValues in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.get__typenameGraphQLRequest(java.lang.String) method.
      parameters - The list of values, for the bind variables declared in the request you defined. If there is no bind variable in the defined Query, this argument may be null or an empty Map
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • __typename

      @Deprecated public String __typename(com.graphql_java_generator.client.request.ObjectResponse objectResponse, Object... paramsAndValues) throws com.graphql_java_generator.exception.GraphQLRequestExecutionException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      __typename in class AnotherMutationTypeExecutorMySchema
      Parameters:
      objectResponse - The definition of the response format, that describes what the GraphQL server is expected to return
      Note: the ObjectResponse type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestMySchema POJO, as returned by the AnotherMutationTypeExecutorMySchema.get__typenameGraphQLRequest(java.lang.String) method.
      paramsAndValues - This parameter contains all the name and values for the Bind Variables defined in the objectResponse parameter, that must be sent to the server. Optional parameter may not have a value. They will be ignored and not sent to the server. Mandatory parameter must be provided in this argument.
      This parameter contains an even number of parameters: it must be a series of name and values : (paramName1, paramValue1, paramName2, paramValue2...)
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestExecutionException - When an error occurs during the request execution, typically a network error, an error from the GraphQL server or if the server response can't be parsed
    • get__typenameResponseBuilder

      @Deprecated public com.graphql_java_generator.client.request.Builder get__typenameResponseBuilder() throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      get__typenameResponseBuilder in class AnotherMutationTypeExecutorMySchema
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException
    • get__typenameGraphQLRequest

      @Deprecated public GraphQLRequestMySchema get__typenameGraphQLRequest(String partialRequest) throws com.graphql_java_generator.exception.GraphQLRequestPreparationException
      Deprecated.
      This method is deprecated: please use CTP_AnotherMutationType_CTSExecutor class instead of this class, to execute this method. It is maintained to keep existing code compatible with the generated code. It will be removed in 2.0 version.
      Overrides:
      get__typenameGraphQLRequest in class AnotherMutationTypeExecutorMySchema
      Parameters:
      partialRequest - The Partial GraphQL request, as explained in the plugin client documentation
      Returns:
      Throws:
      com.graphql_java_generator.exception.GraphQLRequestPreparationException