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 <T> TQueryExecutor. execute(ObjectResponse objectResponse, java.util.Map<java.lang.String,java.lang.Object> parameters, java.lang.Class<T> valueType)Execution of the given simple GraphQL query, and return its response mapped in the relevant POJO.<T> TQueryExecutor. execute(java.lang.String graphqlQuery, java.lang.Class<T> valueType)Execution of the given simple GraphQL query, and return its response mapped in the relevant POJO.<T> TQueryExecutorImpl. execute(ObjectResponse objectResponse, java.util.Map<java.lang.String,java.lang.Object> parameters, java.lang.Class<T> valueType)Execution of the given simple GraphQL query, and return its response mapped in the relevant POJO.<T> TQueryExecutorImpl. execute(java.lang.String query, java.lang.Class<T> valueType)Execution of the given simple GraphQL query, 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. -
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(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> TAbstractGraphQLRequest. exec(java.lang.Class<T> t, java.util.Map<java.lang.String,java.lang.Object> params)java.lang.StringInputParameter. 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 classGraphQLResponseParseExceptionThrown when the client could not parse the GraphQL response.