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> SubscriptionClientQueryExecutor. 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> SubscriptionClientQueryExecutorImpl. 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> SubscriptionClientQueryExecutorSpringReactiveImpl. 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.URIQueryExecutorSpringReactiveImpl. getWebSocketURI()Retrieves the URI for the Web Socket, based on the GraphQL endpoint that has been given to the ConstructorvoidSubscriptionClient. unsubscribe()Allows the client application to unsubscribe from a previously subscribed subscription.voidSubscriptionClientReactiveImpl. 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 voidDirective. 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 voidInputParameter. appendInputParametersToGraphQLRequests(boolean writingGraphQLVariables, java.lang.StringBuilder sb, java.util.List<InputParameter> inputParameters, java.util.Map<java.lang.String,java.lang.Object> parameters)voidAppliedGlobalFragment. appendToGraphQLRequests(java.lang.StringBuilder sb, java.util.Map<java.lang.String,java.lang.Object> parameters)Appends to the givenStringBuilderthis fragment usage ("...fragmentName") followed by the directive declarations, if anyvoidFragment. appendToGraphQLRequests(java.lang.StringBuilder sb, java.util.Map<java.lang.String,java.lang.Object> params)voidQueryField. appendToGraphQLRequests(java.lang.StringBuilder sb, java.util.Map<java.lang.String,java.lang.Object> parameters, boolean appendName)Append this query field in theStringBuilderin which the query is being written.java.lang.StringAbstractGraphQLRequest. 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> SubscriptionClientAbstractGraphQLRequest. 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.StringInputParameter. 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 classGraphQLResponseParseExceptionThrown when the client could not parse the GraphQL response.