Uses of Class
com.graphql_java_generator.client.request.AbstractGraphQLRequest
Package | Description |
---|---|
com.graphql_java_generator.client | |
com.graphql_java_generator.client.request |
This package contains all the classes used to generate the requests toward the GraphQL server.
|
-
Uses of AbstractGraphQLRequest in com.graphql_java_generator.client
Methods in com.graphql_java_generator.client with parameters of type AbstractGraphQLRequest Modifier and Type Method Description <R, T> SubscriptionClient
QueryExecutor. execute(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, SubscriptionCallback<T> subscriptionCallback, java.lang.Class<R> subscriptionType, java.lang.Class<T> messageType)
Executes the given subscription GraphQL request, and returns the relevantWebSocketClient
.<R extends GraphQLRequestObject>
RQueryExecutor. execute(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, java.lang.Class<R> dataResponseType)
Execution of the given query or mutation GraphQL request, and return its response mapped in the relevant POJO.<R, T> SubscriptionClient
QueryExecutorImpl. execute(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, SubscriptionCallback<T> subscriptionCallback, java.lang.Class<R> subscriptionType, java.lang.Class<T> messageType)
Deprecated.Executes the given subscription GraphQL request, and returns the relevantWebSocketClient
.<R extends GraphQLRequestObject>
RQueryExecutorImpl. execute(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, java.lang.Class<R> dataResponseType)
Deprecated.Execution of the given query or mutation GraphQL request, and return its response mapped in the relevant POJO.<R, T> SubscriptionClient
QueryExecutorSpringReactiveImpl. execute(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, SubscriptionCallback<T> subscriptionCallback, java.lang.Class<R> subscriptionType, java.lang.Class<T> messageType)
<R extends GraphQLRequestObject>
RQueryExecutorSpringReactiveImpl. execute(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, java.lang.Class<R> dataResponseType)
-
Uses of AbstractGraphQLRequest in com.graphql_java_generator.client.request
Subclasses of AbstractGraphQLRequest in com.graphql_java_generator.client.request Modifier and Type Class Description class
ObjectResponse
This useless class is here only for compatibility with existing code, developped before the 1.6 release.Constructor parameters in com.graphql_java_generator.client.request with type arguments of type AbstractGraphQLRequest Constructor Description Builder(java.lang.Class<? extends AbstractGraphQLRequest> graphQLRequestClass)
This Builder allows to build a Full request, that is request as you can execute in the graphiql interface.Builder(java.lang.Class<? extends AbstractGraphQLRequest> graphQLRequestClass, java.lang.String fieldName, RequestType requestType, InputParameter... inputParams)
This Builder allows to build a Partial request, that is a request for only one query/mutation/subscription.