Uses of Interface
com.graphql_java_generator.client.GraphQLRequestObject
Package
Description
This package contains all the classes used to generate the requests toward the GraphQL server.
-
Uses of GraphQLRequestObject in com.generated.graphql
-
Uses of GraphQLRequestObject in com.generated.graphql.util
Modifier and TypeMethodDescriptionClass<? extends GraphQLRequestObject>
GraphQLReactiveRequest.getSubscriptionClass()
Class<? extends GraphQLRequestObject>
GraphQLRequest.getSubscriptionClass()
-
Uses of GraphQLRequestObject 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 GraphQLRequestObject in com.graphql_java_generator.client.request
Modifier and TypeMethodDescription<R extends GraphQLRequestObject>
RThis method executes the current GraphQL as a query or mutation GraphQL request, and return its response mapped in the relevant POJO.<R extends GraphQLRequestObject,
T>
SubscriptionClientAbstractGraphQLRequest.exec
(Map<String, Object> params, SubscriptionCallback<T> subscriptionCallback, Class<R> subscriptionType, Class<T> messageType) Execution of the given subscription GraphQL request, and return its response mapped in the relevant POJO.<R extends GraphQLRequestObject>
reactor.core.publisher.Mono<R>AbstractGraphQLRequest.execReactive
(Class<R> r, Map<String, Object> params) This method executes the current GraphQL as a query or mutation GraphQL request, and return a reactiveMono
that will contain the response mapped in the relevant POJO.<R extends GraphQLRequestObject>
reactor.core.publisher.Flux<R>AbstractGraphQLRequest.execReactive
(Map<String, Object> params, Class<R> subscriptionType) Execution of the given subscription GraphQL request, in reactive mode.Modifier and TypeMethodDescriptionprotected abstract Class<? extends GraphQLRequestObject>
AbstractGraphQLRequest.getSubscriptionClass()
Returns the subscription class for this schema