Uses of Class
com.graphql_java_generator.exception.GraphQLRequestExecutionException
Packages that use GraphQLRequestExecutionException
Package
Description
This package contains all the classes used to generate the requests toward the GraphQL server.
-
Uses of GraphQLRequestExecutionException in com.graphql_java_generator.client
Methods in com.graphql_java_generator.client that throw GraphQLRequestExecutionExceptionModifier 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.GraphqlClientUtils.generatesBindVariableValuesMap(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.GraphQLObjectMapper.getAliasValue(com.fasterxml.jackson.core.JsonParser parser, Field targetField, com.fasterxml.jackson.core.TreeNode value) Parse a TreeNode, and return it as a value, according to the given classesvoidSubscriptionClient.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 GraphQLRequestExecutionExceptionModifier and TypeMethodDescriptionvoidDirective.appendToGraphQLRequests(StringBuilder sb, Map<String, 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 GraphQLRequestExecutionExceptionModifier and TypeMethodDescriptionstatic voidInputParameter.appendInputParametersToGraphQLRequests(boolean writingGraphQLVariables, StringBuilder sb, List<InputParameter> inputParameters, Map<String, Object> parameters) voidAppliedGlobalFragment.appendToGraphQLRequests(StringBuilder sb, Map<String, Object> parameters) Appends to the givenStringBuilderthis fragment usage ("...fragmentName") followed by the directive declarations, if anyvoidFragment.appendToGraphQLRequests(StringBuilder sb, Map<String, Object> params) voidQueryField.appendToGraphQLRequests(StringBuilder sb, Map<String, Object> parameters, boolean appendName) Append this query field in theStringBuilderin which the query is being written.<T extends GraphQLRequestObject>
TThis 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.AbstractGraphQLRequest.getPayload(Map<String, Object> params) Returns the payload for this request.InputParameter.getStringContentForGraphqlQuery(boolean writingGraphQLVariables, Map<String, Object> bindVariables) Returns the parameter, as it should be written in the GraphQL query.