Uses of Class
com.graphql_java_generator.exception.GraphQLRequestExecutionException
Package | Description |
---|---|
com.graphql_java_generator.client | |
com.graphql_java_generator.client.directive | |
com.graphql_java_generator.client.request |
This package contains all the classes used to generate the requests toward the GraphQL server.
|
com.graphql_java_generator.exception |
-
Uses of GraphQLRequestExecutionException in com.graphql_java_generator.client
Methods in com.graphql_java_generator.client that throw GraphQLRequestExecutionException 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)
java.util.Map<java.lang.String,java.lang.Object>
GraphqlClientUtils. generatesBindVariableValuesMap(java.lang.Object[] paramsAndValues)
This method retrieves the couple of name and values given in these parameters, stores them in a map where the key is the param name, and the value is the value of theMap
.java.net.URI
QueryExecutorSpringReactiveImpl. getWebSocketURI()
Retrieves the URI for the Web Socket, based on the GraphQL endpoint that has been given to the Constructorvoid
SubscriptionClient. unsubscribe()
Allows the client application to unsubscribe from a previously subscribed subscription.void
SubscriptionClientReactiveImpl. unsubscribe()
-
Uses of GraphQLRequestExecutionException in com.graphql_java_generator.client.directive
Methods in com.graphql_java_generator.client.directive that throw GraphQLRequestExecutionException Modifier and Type Method Description void
Directive. appendToGraphQLRequests(java.lang.StringBuilder sb, java.util.Map<java.lang.String,java.lang.Object> parameters)
Appends this current directive into the givenStringBuilder
, to build the GraphQL request -
Uses of GraphQLRequestExecutionException in com.graphql_java_generator.client.request
Methods in com.graphql_java_generator.client.request that throw GraphQLRequestExecutionException Modifier and Type Method Description static void
InputParameter. appendInputParametersToGraphQLRequests(boolean writingGraphQLVariables, java.lang.StringBuilder sb, java.util.List<InputParameter> inputParameters, java.util.Map<java.lang.String,java.lang.Object> parameters)
void
AppliedGlobalFragment. appendToGraphQLRequests(java.lang.StringBuilder sb, java.util.Map<java.lang.String,java.lang.Object> parameters)
Appends to the givenStringBuilder
this fragment usage ("...fragmentName") followed by the directive declarations, if anyvoid
Fragment. appendToGraphQLRequests(java.lang.StringBuilder sb, java.util.Map<java.lang.String,java.lang.Object> params)
void
QueryField. appendToGraphQLRequests(java.lang.StringBuilder sb, java.util.Map<java.lang.String,java.lang.Object> parameters, boolean appendName)
Append this query field in theStringBuilder
in which the query is being written.java.lang.String
AbstractGraphQLRequest. buildRequest(java.util.Map<java.lang.String,java.lang.Object> params)
<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.<R, T> SubscriptionClient
AbstractGraphQLRequest. exec(java.util.Map<java.lang.String,java.lang.Object> params, SubscriptionCallback<T> subscriptionCallback, java.lang.Class<R> subscriptionType, java.lang.Class<T> messageType)
Execution of the given subscription GraphQL request, and return its response mapped in the relevant POJO.java.lang.String
InputParameter. getValueForGraphqlQuery(boolean writingGraphQLVariables, java.util.Map<java.lang.String,java.lang.Object> bindVariables)
Returns the parameter, as it should be written in the GraphQL query. -
Uses of GraphQLRequestExecutionException in com.graphql_java_generator.exception
Subclasses of GraphQLRequestExecutionException in com.graphql_java_generator.exception Modifier and Type Class Description class
GraphQLResponseParseException
Thrown when the client could not parse the GraphQL response.