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.String subscriptionName, java.lang.Class<R> subscriptionType, java.lang.Class<T> messageType)
Executes the given subscription GraphQL request, and returns the relevantWebSocketClient
.<R> R
QueryExecutor. 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.String subscriptionName, java.lang.Class<R> subscriptionType, java.lang.Class<T> messageType)
Executes the given subscription GraphQL request, and returns the relevantWebSocketClient
.<R> R
QueryExecutorImpl. 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.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
.void
SubscriptionClient. unsubscribe()
Allows the client application to unsubscribe from a previously subscribed subscription. -
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(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> T
AbstractGraphQLRequest. 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.String subscriptionName, 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(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.