Uses of Class
com.graphql_java_generator.exception.GraphQLRequestExecutionException
-
Packages that use 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>
SubscriptionClientRequestExecution. 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>
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,T>
SubscriptionClientRequestExecutionImpl. 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>
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,T>
SubscriptionClientRequestExecutionSpringReactiveImpl. 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>
RRequestExecutionSpringReactiveImpl. execute(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, java.lang.Class<R> dataResponseType)<R extends GraphQLRequestObject>
RGraphQLReactiveWebSocketHandler. executeQueryOrMutation(AbstractGraphQLRequest graphQLRequest, java.util.Map<java.lang.String,java.lang.Object> parameters, java.lang.Class<R> dataResponseType)Execution of a query or a mutation, from the given request and parameters, onto this Web Socket.<R,T>
SubscriptionClientGraphQLReactiveWebSocketHandler. executeSubscription(AbstractGraphQLRequest request, java.util.Map<java.lang.String,java.lang.Object> parameters, SubscriptionCallback<T> subscriptionCallback, java.lang.Class<R> subscriptionType, java.lang.Class<T> messsageType)Execution of a subscription, from the given request and parameters, onto this Web Socket.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.lang.ObjectGraphQLObjectMapper. getAliasValue(com.fasterxml.jackson.core.JsonParser parser, java.lang.reflect.Field targetField, com.fasterxml.jackson.core.TreeNode value)Parse a TreeNode, and return it as a value, according to the given classesjava.net.URIGraphQLReactiveWebSocketHandler. 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.util.Map<java.lang.String,java.lang.Object>AbstractGraphQLRequest. buildRequestAsMap(java.util.Map<java.lang.String,java.lang.Object> params)Builds the request, and return it as a Stringjava.lang.StringAbstractGraphQLRequest. buildRequestAsString(java.util.Map<java.lang.String,java.lang.Object> params)Builds the request, and return it as a String<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.StringAbstractGraphQLRequest. getJsonRequest(java.util.Map<java.lang.String,java.lang.Object> parameters)Returns the json string to be send to the GraphQL server, for execution of this requestjava.lang.StringInputParameter. getStringContentForGraphqlQuery(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.
-