Uses of Interface
com.graphql_java_generator.client.GraphQLRequestObject
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 GraphQLRequestObject in com.graphql_java_generator.client
Methods in com.graphql_java_generator.client with type parameters of type GraphQLRequestObject Modifier and Type Method Description <R extends GraphQLRequestObject>
RRequestExecution. 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 extends GraphQLRequestObject>
RRequestExecutionGraphQLTransportWSImpl. execute(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, java.lang.Class<R> dataResponseType)
<R extends GraphQLRequestObject>
RRequestExecutionImpl. 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 extends GraphQLRequestObject>
RRequestExecutionSpringReactiveImpl. execute(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, java.lang.Class<R> dataResponseType)
<R extends GraphQLRequestObject>
RGraphQLReactiveWebSocketHandler. executeQueryOrMutation(java.util.Map<java.lang.String,java.lang.Object> request, java.lang.Class<R> requestType)
This method executes a query or a mutation over this web socket, as described in the graphql-transport-ws protocol. -
Uses of GraphQLRequestObject in com.graphql_java_generator.client.request
Methods in com.graphql_java_generator.client.request with type parameters of type GraphQLRequestObject Modifier and Type Method Description <T extends GraphQLRequestObject>
TAbstractGraphQLRequest. exec(java.lang.Class<T> t, java.util.Map<java.lang.String,java.lang.Object> params)
This method executes the current GraphQL as a query or mutation GraphQL request, and return its response mapped in the relevant POJO.