Package org.forum.client
Class MutationReactiveExecutorForum
java.lang.Object
org.forum.client.MutationReactiveExecutorForum
- All Implemented Interfaces:
GraphQLMutationReactiveExecutor
@Component
public class MutationReactiveExecutorForum
extends Object
implements GraphQLMutationReactiveExecutor
This class contains the methods that allows the execution of the queries or mutations that are defined in the Mutation
of the GraphQL schema. All the methods for this executor are in spring reactive, that is: they return a
These methods allows:
Mono
.These methods allows:
- Preparation of full requests
- Execution of prepared full requests
- Execution of direct full direct requests
- Preparation of partial requests
- Execution of prepared partial requests
- Execution of direct partial requests
- Author:
- generated by graphql-java-generator
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescription__typename
(ObjectResponse objectResponse, Object... paramsAndValues) This method is expected by the graphql-java framework.__typename
(String queryResponseDef, Object... paramsAndValues) This method executes a partial query against the GraphQL server.__typenameWithBindValues
(ObjectResponse objectResponse, Map<String, Object> parameters) This method is expected by the graphql-java framework.__typenameWithBindValues
(String queryResponseDef, Map<String, Object> parameters) This method executes a partial query against the GraphQL server.createBoard
(ObjectResponse objectResponse, String name, Boolean publiclyAvailable, Object... paramsAndValues) This method is expected by the graphql-java framework.createBoard
(String queryResponseDef, String name, Boolean publiclyAvailable, Object... paramsAndValues) This method executes a partial query against the GraphQL server.createBoardWithBindValues
(ObjectResponse objectResponse, String name, Boolean publiclyAvailable, Map<String, Object> parameters) This method is expected by the graphql-java framework.createBoardWithBindValues
(String queryResponseDef, String name, Boolean publiclyAvailable, Map<String, Object> parameters) This method executes a partial query against the GraphQL server.createMember
(ObjectResponse objectResponse, MemberInput input, Object... paramsAndValues) This method is expected by the graphql-java framework.createMember
(String queryResponseDef, MemberInput input, Object... paramsAndValues) This method executes a partial query against the GraphQL server.createMemberWithBindValues
(ObjectResponse objectResponse, MemberInput input, Map<String, Object> parameters) This method is expected by the graphql-java framework.createMemberWithBindValues
(String queryResponseDef, MemberInput input, Map<String, Object> parameters) This method executes a partial query against the GraphQL server.createPost
(ObjectResponse objectResponse, PostInput post, Object... paramsAndValues) This method is expected by the graphql-java framework.createPost
(String queryResponseDef, PostInput post, Object... paramsAndValues) This method executes a partial query against the GraphQL server.createPosts
(ObjectResponse objectResponse, List<PostInput> spam, Object... paramsAndValues) This method is expected by the graphql-java framework.createPosts
(String queryResponseDef, List<PostInput> spam, Object... paramsAndValues) This method executes a partial query against the GraphQL server.createPostsWithBindValues
(ObjectResponse objectResponse, List<PostInput> spam, Map<String, Object> parameters) This method is expected by the graphql-java framework.createPostsWithBindValues
(String queryResponseDef, List<PostInput> spam, Map<String, Object> parameters) This method executes a partial query against the GraphQL server.createPostWithBindValues
(ObjectResponse objectResponse, PostInput post, Map<String, Object> parameters) This method is expected by the graphql-java framework.This method executes a partial query against the GraphQL server.createTopic
(ObjectResponse objectResponse, TopicInput topic, Object... paramsAndValues) This method is expected by the graphql-java framework.createTopic
(String queryResponseDef, TopicInput topic, Object... paramsAndValues) This method executes a partial query against the GraphQL server.createTopicWithBindValues
(ObjectResponse objectResponse, TopicInput topic, Map<String, Object> parameters) This method is expected by the graphql-java framework.createTopicWithBindValues
(String queryResponseDef, TopicInput topic, Map<String, Object> parameters) This method executes a partial query against the GraphQL server.reactor.core.publisher.Mono<MutationResponse>
exec
(ObjectResponse objectResponse, Object... paramsAndValues) This method takes a full request definition, and executes it against the GraphQL server.reactor.core.publisher.Mono<MutationResponse>
This method takes a full request definition, and executes it against the GraphQL server.reactor.core.publisher.Mono<MutationResponse>
execWithBindValues
(ObjectResponse objectResponse, Map<String, Object> parameters) This method takes a full request definition, and executes it against the GraphQL server.reactor.core.publisher.Mono<MutationResponse>
execWithBindValues
(String queryResponseDef, Map<String, Object> parameters) This method takes a full request definition, and executes it against the GraphQL server.get__typenameGraphQLRequest
(String partialRequest) Get theGraphQLReactiveRequestForum
for the __typename REACTIVE_EXECUTOR, created with the given Partial request.Get theBuilder
for the String, as expected by the __typename query/mutation.getCreateBoardGraphQLRequest
(String partialRequest) Get theGraphQLReactiveRequestForum
for the createBoard REACTIVE_EXECUTOR, created with the given Partial request.Get theBuilder
for the Board, as expected by the createBoard query/mutation.getCreateMemberGraphQLRequest
(String partialRequest) Get theGraphQLReactiveRequestForum
for the createMember REACTIVE_EXECUTOR, created with the given Partial request.Get theBuilder
for the Member, as expected by the createMember query/mutation.getCreatePostGraphQLRequest
(String partialRequest) Get theGraphQLReactiveRequestForum
for the createPost REACTIVE_EXECUTOR, created with the given Partial request.Get theBuilder
for the Post, as expected by the createPost query/mutation.getCreatePostsGraphQLRequest
(String partialRequest) Get theGraphQLReactiveRequestForum
for the createPosts REACTIVE_EXECUTOR, created with the given Partial request.Get theBuilder
for the Post, as expected by the createPosts query/mutation.getCreateTopicGraphQLRequest
(String partialRequest) Get theGraphQLReactiveRequestForum
for the createTopic REACTIVE_EXECUTOR, created with the given Partial request.Get theBuilder
for the Topic, as expected by the createTopic query/mutation.getGraphQLRequest
(String fullRequest) Get theGraphQLReactiveRequestForum
for full request.Get theBuilder
for a full request, as expected by the exec and execWithBindValues methods.
-
Constructor Details
-
MutationReactiveExecutorForum
public MutationReactiveExecutorForum()
-
-
Method Details
-
execWithBindValues
public reactor.core.publisher.Mono<MutationResponse> execWithBindValues(String queryResponseDef, Map<String, Object> parameters) throws GraphQLRequestExecutionException, GraphQLRequestPreparationExceptionThis method takes a full request definition, and executes it against the GraphQL server. As this class is a mutation executor, the provided request must be a mutation full request. This request will be executed in reactive mode, that is: it returns aMono
This method offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
Here is a sample on how to use it:- Parameters:
queryResponseDef
- The response definition of the mutation, in the native GraphQL format (see here above). It must ommit the query/mutation/subscription 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 defined in the query. If there is no bind variable in the defined Query, this argument may be null or an emptyMap
. The key is the parameter name, as defined in the query (in the above sample: heroParam is an optional parameter and skip is a mandatory one). The value is the parameter vale in its Java type (for instance aDate
for theGraphQLScalarTypeDate
). The parameters which value is missing in this map will no be transmitted toward the GraphQL server.- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
public reactor.core.publisher.Mono<MutationResponse> exec(String queryResponseDef, Object... paramsAndValues) throws GraphQLRequestExecutionException, GraphQLRequestPreparationException This method takes a full request definition, and executes it against the GraphQL server. As this class is a mutation executor, the provided request must be a mutation full request. This request will be executed in reactive mode, that is: it returns aMono
This method offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
Here is a sample on how to use it:- Parameters:
queryResponseDef
- The response definition of the query, in the native GraphQL format (see here above). It must ommit the query/mutation/subscription 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:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
-
execWithBindValues
public reactor.core.publisher.Mono<MutationResponse> execWithBindValues(ObjectResponse objectResponse, Map<String, Object> parameters) throws GraphQLRequestExecutionExceptionThis method takes a full request definition, and executes it against the GraphQL server. As this class is a mutation executor, the provided request must be a mutation full request. This request will be executed in reactive mode, that is: it returns aMono
This method offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
Here is a sample on how to use it:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by thegetGraphQLRequest(java.lang.String)
method or one of thegetXxxxGraphQLRequest(String)
methods.parameters
- The list of values, for the bind variables defined in the query. If there is no bind variable in the defined Query, this argument may be null or an emptyMap
- Throws:
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
public reactor.core.publisher.Mono<MutationResponse> exec(ObjectResponse objectResponse, Object... paramsAndValues) throws GraphQLRequestExecutionException This method takes a full request definition, and executes it against the GraphQL server. As this class is a mutation executor, the provided request must be a mutation full request. This request will be executed in reactive mode, that is: it returns aMono
This method offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
Here is a sample on how to use it:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by thegetGraphQLRequest(java.lang.String)
method or one of thegetXxxxGraphQLRequest(String)
methods.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:
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
Get theBuilder
for a full request, as expected by the exec and execWithBindValues methods.- Returns:
- Throws:
GraphQLRequestPreparationException
-
getGraphQLRequest
public GraphQLReactiveRequestForum getGraphQLRequest(String fullRequest) throws GraphQLRequestPreparationException Get theGraphQLReactiveRequestForum
for full request. For instance:GraphQLReactiveRequestForum request = new GraphQLRequest(fullRequest);
- Parameters:
fullRequest
- The full GraphQL Request, as specified in the GraphQL specification- Returns:
- Throws:
GraphQLRequestPreparationException
-
createBoardWithBindValues
public reactor.core.publisher.Mono<Optional<Board>> createBoardWithBindValues(String queryResponseDef, String name, Boolean publiclyAvailable, Map<String, Object> parameters) throws GraphQLRequestExecutionException, GraphQLRequestPreparationExceptionThis method executes a partial query against the GraphQL server. That is, the query that is one of the queries defined in the GraphQL query object. The queryResponseDef contains the part of the query that is after the query name.
For instance, if the query hero has one parameter (as defined in the GraphQL schema):- Parameters:
queryResponseDef
- The response definition of the query, in the native GraphQL format (see here above)name
- Parameter for the createBoard field of Mutation, as defined in the GraphQL schemapubliclyAvailable
- Parameter for the createBoard field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
-
createBoard
public reactor.core.publisher.Mono<Optional<Board>> createBoard(String queryResponseDef, String name, Boolean publiclyAvailable, Object... paramsAndValues) throws GraphQLRequestExecutionException, GraphQLRequestPreparationException This method executes a partial query against the GraphQL server. That is, the query that is one of the queries defined in the GraphQL query object. The queryResponseDef contains the part of the query that is after the query name.
For instance, if the query hero has one parameter (as defined in the GraphQL schema):- Parameters:
queryResponseDef
- The response definition of the query/mutation, in the native GraphQL format (see here above)name
- Parameter for the createBoard field of Mutation, as defined in the GraphQL schemapubliclyAvailable
- Parameter for the createBoard field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
-
createBoardWithBindValues
public reactor.core.publisher.Mono<Optional<Board>> createBoardWithBindValues(ObjectResponse objectResponse, String name, Boolean publiclyAvailable, Map<String, Object> parameters) throws GraphQLRequestExecutionExceptionThis method is expected by the graphql-java framework. It will be called when this query is called. It offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
This method is valid for queries/mutations/subscriptions which don't have bind variables, as there is no parameters argument to pass the list of values.
Here is a sample:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by thegetCreateBoardGraphQLRequest(java.lang.String)
method.name
- Parameter for the createBoard field of Mutation, as defined in the GraphQL schemapubliclyAvailable
- Parameter for the createBoard field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
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
-
createBoard
public reactor.core.publisher.Mono<Optional<Board>> createBoard(ObjectResponse objectResponse, String name, Boolean publiclyAvailable, Object... paramsAndValues) throws GraphQLRequestExecutionException This method is expected by the graphql-java framework. It will be called when this query is called. It offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
This method is valid for queries/mutations/subscriptions which don't have bind variables, as there is no parameters argument to pass the list of values.
Here is a sample:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by thegetCreateBoardGraphQLRequest(java.lang.String)
method.name
- Parameter for the createBoard field of Mutation, as defined in the GraphQL schemapubliclyAvailable
- Parameter for the createBoard field of Mutation, as defined in the GraphQL schemaparamsAndValues
- 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:
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
-
getCreateBoardResponseBuilder
Get theBuilder
for the Board, as expected by the createBoard query/mutation.- Returns:
- Throws:
GraphQLRequestPreparationException
-
getCreateBoardGraphQLRequest
public GraphQLReactiveRequestForum getCreateBoardGraphQLRequest(String partialRequest) throws GraphQLRequestPreparationException Get theGraphQLReactiveRequestForum
for the createBoard REACTIVE_EXECUTOR, created with the given Partial request.- Parameters:
partialRequest
- The Partial GraphQL request, as explained in the plugin client documentation- Returns:
- Throws:
GraphQLRequestPreparationException
-
createTopicWithBindValues
public reactor.core.publisher.Mono<Optional<Topic>> createTopicWithBindValues(String queryResponseDef, TopicInput topic, Map<String, Object> parameters) throws GraphQLRequestExecutionException, GraphQLRequestPreparationExceptionThis method executes a partial query against the GraphQL server. That is, the query that is one of the queries defined in the GraphQL query object. The queryResponseDef contains the part of the query that is after the query name.
For instance, if the query hero has one parameter (as defined in the GraphQL schema):- Parameters:
queryResponseDef
- The response definition of the query, in the native GraphQL format (see here above)topic
- Parameter for the createTopic field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
-
createTopic
public reactor.core.publisher.Mono<Optional<Topic>> createTopic(String queryResponseDef, TopicInput topic, Object... paramsAndValues) throws GraphQLRequestExecutionException, GraphQLRequestPreparationException This method executes a partial query against the GraphQL server. That is, the query that is one of the queries defined in the GraphQL query object. The queryResponseDef contains the part of the query that is after the query name.
For instance, if the query hero has one parameter (as defined in the GraphQL schema):- Parameters:
queryResponseDef
- The response definition of the query/mutation, in the native GraphQL format (see here above)topic
- Parameter for the createTopic field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
-
createTopicWithBindValues
public reactor.core.publisher.Mono<Optional<Topic>> createTopicWithBindValues(ObjectResponse objectResponse, TopicInput topic, Map<String, Object> parameters) throws GraphQLRequestExecutionExceptionThis method is expected by the graphql-java framework. It will be called when this query is called. It offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
This method is valid for queries/mutations/subscriptions which don't have bind variables, as there is no parameters argument to pass the list of values.
Here is a sample:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by thegetCreateTopicGraphQLRequest(java.lang.String)
method.topic
- Parameter for the createTopic field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
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
-
createTopic
public reactor.core.publisher.Mono<Optional<Topic>> createTopic(ObjectResponse objectResponse, TopicInput topic, Object... paramsAndValues) throws GraphQLRequestExecutionException This method is expected by the graphql-java framework. It will be called when this query is called. It offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
This method is valid for queries/mutations/subscriptions which don't have bind variables, as there is no parameters argument to pass the list of values.
Here is a sample:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by thegetCreateTopicGraphQLRequest(java.lang.String)
method.topic
- Parameter for the createTopic field of Mutation, as defined in the GraphQL schemaparamsAndValues
- 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:
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
-
getCreateTopicResponseBuilder
Get theBuilder
for the Topic, as expected by the createTopic query/mutation.- Returns:
- Throws:
GraphQLRequestPreparationException
-
getCreateTopicGraphQLRequest
public GraphQLReactiveRequestForum getCreateTopicGraphQLRequest(String partialRequest) throws GraphQLRequestPreparationException Get theGraphQLReactiveRequestForum
for the createTopic REACTIVE_EXECUTOR, created with the given Partial request.- Parameters:
partialRequest
- The Partial GraphQL request, as explained in the plugin client documentation- Returns:
- Throws:
GraphQLRequestPreparationException
-
createPostWithBindValues
public reactor.core.publisher.Mono<Optional<Post>> createPostWithBindValues(String queryResponseDef, PostInput post, Map<String, Object> parameters) throws GraphQLRequestExecutionException, GraphQLRequestPreparationExceptionThis method executes a partial query against the GraphQL server. That is, the query that is one of the queries defined in the GraphQL query object. The queryResponseDef contains the part of the query that is after the query name.
For instance, if the query hero has one parameter (as defined in the GraphQL schema):- Parameters:
queryResponseDef
- The response definition of the query, in the native GraphQL format (see here above)post
- Parameter for the createPost field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
-
createPost
public reactor.core.publisher.Mono<Optional<Post>> createPost(String queryResponseDef, PostInput post, Object... paramsAndValues) throws GraphQLRequestExecutionException, GraphQLRequestPreparationException This method executes a partial query against the GraphQL server. That is, the query that is one of the queries defined in the GraphQL query object. The queryResponseDef contains the part of the query that is after the query name.
For instance, if the query hero has one parameter (as defined in the GraphQL schema):- Parameters:
queryResponseDef
- The response definition of the query/mutation, in the native GraphQL format (see here above)post
- Parameter for the createPost field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
-
createPostWithBindValues
public reactor.core.publisher.Mono<Optional<Post>> createPostWithBindValues(ObjectResponse objectResponse, PostInput post, Map<String, Object> parameters) throws GraphQLRequestExecutionExceptionThis method is expected by the graphql-java framework. It will be called when this query is called. It offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
This method is valid for queries/mutations/subscriptions which don't have bind variables, as there is no parameters argument to pass the list of values.
Here is a sample:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by thegetCreatePostGraphQLRequest(java.lang.String)
method.post
- Parameter for the createPost field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
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
-
createPost
public reactor.core.publisher.Mono<Optional<Post>> createPost(ObjectResponse objectResponse, PostInput post, Object... paramsAndValues) throws GraphQLRequestExecutionException This method is expected by the graphql-java framework. It will be called when this query is called. It offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
This method is valid for queries/mutations/subscriptions which don't have bind variables, as there is no parameters argument to pass the list of values.
Here is a sample:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by thegetCreatePostGraphQLRequest(java.lang.String)
method.post
- Parameter for the createPost field of Mutation, as defined in the GraphQL schemaparamsAndValues
- 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:
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
-
getCreatePostResponseBuilder
Get theBuilder
for the Post, as expected by the createPost query/mutation.- Returns:
- Throws:
GraphQLRequestPreparationException
-
getCreatePostGraphQLRequest
public GraphQLReactiveRequestForum getCreatePostGraphQLRequest(String partialRequest) throws GraphQLRequestPreparationException Get theGraphQLReactiveRequestForum
for the createPost REACTIVE_EXECUTOR, created with the given Partial request.- Parameters:
partialRequest
- The Partial GraphQL request, as explained in the plugin client documentation- Returns:
- Throws:
GraphQLRequestPreparationException
-
createPostsWithBindValues
public reactor.core.publisher.Mono<Optional<List<Post>>> createPostsWithBindValues(String queryResponseDef, List<PostInput> spam, Map<String, Object> parameters) throws GraphQLRequestExecutionException, GraphQLRequestPreparationExceptionThis method executes a partial query against the GraphQL server. That is, the query that is one of the queries defined in the GraphQL query object. The queryResponseDef contains the part of the query that is after the query name.
For instance, if the query hero has one parameter (as defined in the GraphQL schema):- Parameters:
queryResponseDef
- The response definition of the query, in the native GraphQL format (see here above)spam
- Parameter for the createPosts field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
-
createPosts
public reactor.core.publisher.Mono<Optional<List<Post>>> createPosts(String queryResponseDef, List<PostInput> spam, Object... paramsAndValues) throws GraphQLRequestExecutionException, GraphQLRequestPreparationException This method executes a partial query against the GraphQL server. That is, the query that is one of the queries defined in the GraphQL query object. The queryResponseDef contains the part of the query that is after the query name.
For instance, if the query hero has one parameter (as defined in the GraphQL schema):- Parameters:
queryResponseDef
- The response definition of the query/mutation, in the native GraphQL format (see here above)spam
- Parameter for the createPosts field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
-
createPostsWithBindValues
public reactor.core.publisher.Mono<Optional<List<Post>>> createPostsWithBindValues(ObjectResponse objectResponse, List<PostInput> spam, Map<String, Object> parameters) throws GraphQLRequestExecutionExceptionThis method is expected by the graphql-java framework. It will be called when this query is called. It offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
This method is valid for queries/mutations/subscriptions which don't have bind variables, as there is no parameters argument to pass the list of values.
Here is a sample:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by thegetCreatePostsGraphQLRequest(java.lang.String)
method.spam
- Parameter for the createPosts field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
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
-
createPosts
public reactor.core.publisher.Mono<Optional<List<Post>>> createPosts(ObjectResponse objectResponse, List<PostInput> spam, Object... paramsAndValues) throws GraphQLRequestExecutionException This method is expected by the graphql-java framework. It will be called when this query is called. It offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
This method is valid for queries/mutations/subscriptions which don't have bind variables, as there is no parameters argument to pass the list of values.
Here is a sample:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by thegetCreatePostsGraphQLRequest(java.lang.String)
method.spam
- Parameter for the createPosts field of Mutation, as defined in the GraphQL schemaparamsAndValues
- 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:
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
-
getCreatePostsResponseBuilder
Get theBuilder
for the Post, as expected by the createPosts query/mutation.- Returns:
- Throws:
GraphQLRequestPreparationException
-
getCreatePostsGraphQLRequest
public GraphQLReactiveRequestForum getCreatePostsGraphQLRequest(String partialRequest) throws GraphQLRequestPreparationException Get theGraphQLReactiveRequestForum
for the createPosts REACTIVE_EXECUTOR, created with the given Partial request.- Parameters:
partialRequest
- The Partial GraphQL request, as explained in the plugin client documentation- Returns:
- Throws:
GraphQLRequestPreparationException
-
createMemberWithBindValues
public reactor.core.publisher.Mono<Optional<Member>> createMemberWithBindValues(String queryResponseDef, MemberInput input, Map<String, Object> parameters) throws GraphQLRequestExecutionException, GraphQLRequestPreparationExceptionThis method executes a partial query against the GraphQL server. That is, the query that is one of the queries defined in the GraphQL query object. The queryResponseDef contains the part of the query that is after the query name.
For instance, if the query hero has one parameter (as defined in the GraphQL schema):- Parameters:
queryResponseDef
- The response definition of the query, in the native GraphQL format (see here above)input
- Parameter for the createMember field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
-
createMember
public reactor.core.publisher.Mono<Optional<Member>> createMember(String queryResponseDef, MemberInput input, Object... paramsAndValues) throws GraphQLRequestExecutionException, GraphQLRequestPreparationException This method executes a partial query against the GraphQL server. That is, the query that is one of the queries defined in the GraphQL query object. The queryResponseDef contains the part of the query that is after the query name.
For instance, if the query hero has one parameter (as defined in the GraphQL schema):- Parameters:
queryResponseDef
- The response definition of the query/mutation, in the native GraphQL format (see here above)input
- Parameter for the createMember field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
-
createMemberWithBindValues
public reactor.core.publisher.Mono<Optional<Member>> createMemberWithBindValues(ObjectResponse objectResponse, MemberInput input, Map<String, Object> parameters) throws GraphQLRequestExecutionExceptionThis method is expected by the graphql-java framework. It will be called when this query is called. It offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
This method is valid for queries/mutations/subscriptions which don't have bind variables, as there is no parameters argument to pass the list of values.
Here is a sample:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by thegetCreateMemberGraphQLRequest(java.lang.String)
method.input
- Parameter for the createMember field of Mutation, as defined in the GraphQL schemaparameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
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
-
createMember
public reactor.core.publisher.Mono<Optional<Member>> createMember(ObjectResponse objectResponse, MemberInput input, Object... paramsAndValues) throws GraphQLRequestExecutionException This method is expected by the graphql-java framework. It will be called when this query is called. It offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
This method is valid for queries/mutations/subscriptions which don't have bind variables, as there is no parameters argument to pass the list of values.
Here is a sample:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by thegetCreateMemberGraphQLRequest(java.lang.String)
method.input
- Parameter for the createMember field of Mutation, as defined in the GraphQL schemaparamsAndValues
- 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:
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
-
getCreateMemberResponseBuilder
Get theBuilder
for the Member, as expected by the createMember query/mutation.- Returns:
- Throws:
GraphQLRequestPreparationException
-
getCreateMemberGraphQLRequest
public GraphQLReactiveRequestForum getCreateMemberGraphQLRequest(String partialRequest) throws GraphQLRequestPreparationException Get theGraphQLReactiveRequestForum
for the createMember REACTIVE_EXECUTOR, created with the given Partial request.- Parameters:
partialRequest
- The Partial GraphQL request, as explained in the plugin client documentation- Returns:
- Throws:
GraphQLRequestPreparationException
-
__typenameWithBindValues
public reactor.core.publisher.Mono<Optional<String>> __typenameWithBindValues(String queryResponseDef, Map<String, Object> parameters) throws GraphQLRequestExecutionException, GraphQLRequestPreparationExceptionThis method executes a partial query against the GraphQL server. That is, the query that is one of the queries defined in the GraphQL query object. The queryResponseDef contains the part of the query that is after the query name.
For instance, if the query hero has one parameter (as defined in the GraphQL schema):- 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 defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
public reactor.core.publisher.Mono<Optional<String>> __typename(String queryResponseDef, Object... paramsAndValues) throws GraphQLRequestExecutionException, GraphQLRequestPreparationException This method executes a partial query against the GraphQL server. That is, the query that is one of the queries defined in the GraphQL query object. The queryResponseDef contains the part of the query that is after the query name.
For instance, if the query hero has one parameter (as defined in the GraphQL schema):- Parameters:
queryResponseDef
- The response definition of the query/mutation, in the native GraphQL format (see here above)parameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
GraphQLRequestPreparationException
- When an error occurs during the request preparation, typically when building theObjectResponse
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
-
__typenameWithBindValues
public reactor.core.publisher.Mono<Optional<String>> __typenameWithBindValues(ObjectResponse objectResponse, Map<String, Object> parameters) throws GraphQLRequestExecutionExceptionThis method is expected by the graphql-java framework. It will be called when this query is called. It offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
This method is valid for queries/mutations/subscriptions which don't have bind variables, as there is no parameters argument to pass the list of values.
Here is a sample:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by theget__typenameGraphQLRequest(java.lang.String)
method.parameters
- The list of values, for the bind variables defined in the query/mutation. If there is no bind variable in the defined query/mutation, this argument may be null or an emptyMap
- Throws:
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
public reactor.core.publisher.Mono<Optional<String>> __typename(ObjectResponse objectResponse, Object... paramsAndValues) throws GraphQLRequestExecutionException This method is expected by the graphql-java framework. It will be called when this query is called. It offers a logging of the call (if in debug mode), or of the call and its parameters (if in trace mode).
This method is valid for queries/mutations/subscriptions which don't have bind variables, as there is no parameters argument to pass the list of values.
Here is a sample:- Parameters:
objectResponse
- The definition of the response format, that describes what the GraphQL server is expected to return
Note: theObjectResponse
type of this parameter is defined for backward compatibility. In new implementations, the expected type is the generated GraphQLRequestForum POJO, as returned by theget__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:
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
Get theBuilder
for the String, as expected by the __typename query/mutation.- Returns:
- Throws:
GraphQLRequestPreparationException
-
get__typenameGraphQLRequest
public GraphQLReactiveRequestForum get__typenameGraphQLRequest(String partialRequest) throws GraphQLRequestPreparationException Get theGraphQLReactiveRequestForum
for the __typename REACTIVE_EXECUTOR, created with the given Partial request.- Parameters:
partialRequest
- The Partial GraphQL request, as explained in the plugin client documentation- Returns:
- Throws:
GraphQLRequestPreparationException
-