Uses of Class
com.graphql_java_generator.client.request.AbstractGraphQLRequest
Package
Description
This package contains all the classes used to generate the requests toward the GraphQL server.
-
Uses of AbstractGraphQLRequest in com.generated.graphql.util
-
Uses of AbstractGraphQLRequest in com.graphql_java_generator.client
Modifier and TypeMethodDescription<R extends GraphQLRequestObject,
T>
SubscriptionClientRequestExecution.execute
(AbstractGraphQLRequest graphQLRequest, Map<String, Object> parameters, SubscriptionCallback<T> subscriptionCallback, Class<R> subscriptionType, Class<T> messageType) Deprecated.Executes the given subscription GraphQL request, and returns the relevantWebSocketClient
.<R extends GraphQLRequestObject>
RRequestExecution.execute
(AbstractGraphQLRequest graphQLRequest, Map<String, Object> parameters, Class<R> dataResponseType) Deprecated.Execution of the given query or mutation GraphQL request, and return its response mapped in the relevant POJO.<R extends GraphQLRequestObject,
T>
SubscriptionClientRequestExecutionSpringReactiveImpl.execute
(AbstractGraphQLRequest graphQLRequest, Map<String, Object> parameters, SubscriptionCallback<T> subscriptionCallback, Class<R> subscriptionType, Class<T> messageType) Deprecated.<R extends GraphQLRequestObject>
RRequestExecutionSpringReactiveImpl.execute
(AbstractGraphQLRequest graphQLRequest, Map<String, Object> parameters, Class<R> dataResponseType) Deprecated. -
Uses of AbstractGraphQLRequest in com.graphql_java_generator.client.request
Modifier and TypeClassDescriptionclass
This useless class is here only for compatibility with existing code, developped before the 1.6 release.ModifierConstructorDescriptionBuilder
(org.springframework.graphql.client.GraphQlClient graphQlClient, Class<? extends AbstractGraphQLRequest> graphQLRequestClass) This Builder allows to build a Full request, that is request as you can execute in the graphiql interface.Builder
(org.springframework.graphql.client.GraphQlClient graphQlClient, Class<? extends AbstractGraphQLRequest> graphQLRequestClass, String fieldName, RequestType requestType, InputParameter... inputParams) This Builder allows to build a Partial request, that is a request for only one query/mutation/subscription.