Uses of Class
com.graphql_java_generator.exception.GraphQLRequestPreparationException
Packages that use GraphQLRequestPreparationException
Package
Description
This package contains all the needed classes to manage
GraphQLRepository
.This package contains all the classes used to generate the requests toward the GraphQL server.
-
Uses of GraphQLRequestPreparationException in com.graphql_java_generator.client
Methods in com.graphql_java_generator.client that throw GraphQLRequestPreparationExceptionModifier and TypeMethodDescriptionClass<?>
GraphqlClientUtils.checkFieldOfGraphQLType
(String name, Boolean shouldBeScalar, Class<?> owningClass) Check if the given field is owned by the class of thisObjectResponse
.Class<?>
GraphqlClientUtils.checkIsScalar
(Field field, Boolean shouldBeScalar) This method checks whether the given field (as an attribute) of the given class is a GraphQL scalar, or not, depending on shouldBeScalar.Class<?>
GraphqlClientUtils.checkIsScalar
(String fieldName, Method method, Boolean shouldBeScalar) This method checks whether the given field (as a method: getter, query...) of the given class is a GraphQL scalar, or not, depending on shouldBeScalar.void
Checks that the given GraphQL name is valid.GraphqlClientUtils.getDeclaredField
(Class<?> owningClass, String fieldName, boolean mustFindField) Returns aField
from the given class.Class<?>
GraphqlClientUtils.getFieldType
(Class<?> owningClass, String fieldName, boolean returnIsMandatory) Retrieves the class of the fieldName field of the owningClass class.Class<?>
GraphqlClientUtils.getGraphQLType
(AccessibleObject fieldOrMethod) Returns the Class indicated as the value for the graphqlType attribute of the GraphQLScalar or GraphQLNonScalar annotationboolean
GraphqlClientUtils.isScalar
(AccessibleObject fieldOrMethod) Indicates whether the given class is a scalar or not -
Uses of GraphQLRequestPreparationException in com.graphql_java_generator.client.directive
Methods in com.graphql_java_generator.client.directive that throw GraphQLRequestPreparationExceptionModifier and TypeMethodDescriptionDirective.getDirectiveDefinition()
Returns the definition for this GraphQL directiveConstructors in com.graphql_java_generator.client.directive that throw GraphQLRequestPreparationExceptionModifierConstructorDescriptionDirective
(QueryTokenizer qt, String schema) Create a Directive from aQueryTokenizer
. -
Uses of GraphQLRequestPreparationException in com.graphql_java_generator.client.graphqlrepository
Methods in com.graphql_java_generator.client.graphqlrepository that throw GraphQLRequestPreparationExceptionModifier and TypeMethodDescription<R> R
GraphQLRepositoryProxyBeanFactory.createGraphQLRepositoryInvocationHandler
(ClassLoader classLoader, Class<R> clazz) Constructors in com.graphql_java_generator.client.graphqlrepository that throw GraphQLRequestPreparationExceptionModifierConstructorDescriptionGraphQLRepositoryInvocationHandler
(Class<T> repositoryInterface, org.springframework.context.ApplicationContext ctx) Builds the instance from the given SpringApplicationContext
: it extracts the query, mutation and subscription executors that have been generated from the GraphQL schema. -
Uses of GraphQLRequestPreparationException in com.graphql_java_generator.client.request
Methods in com.graphql_java_generator.client.request that throw GraphQLRequestPreparationExceptionModifier and TypeMethodDescriptionvoid
Fragment.addTypenameFields()
Adds the __typename field into this fragment, and all the subojects it contains.Builder.build()
Returns the builtObjectResponse
.protected abstract QueryField
AbstractGraphQLRequest.getMutationContext()
Retrieved theQueryField
for the mutation (that is the mutation type coming from the GraphQL schema) from the concrete class.protected abstract QueryField
AbstractGraphQLRequest.getQueryContext()
Retrieved theQueryField
for the query (that is the query type coming from the GraphQL schema) from the concrete class.protected abstract QueryField
AbstractGraphQLRequest.getSubscriptionContext()
Retrieved theQueryField
for the subscription (that is the subscription type coming from the GraphQL schema) from the concrete class.boolean
QueryField.isScalar()
Indicates whether this field is a scalar or not.QueryTokenizer.readNextRealToken
(String expected, String action) Reads the next real token, that is the next token that is not a separatorstatic List<InputParameter>
InputParameter.readTokenizerForInputParameters
(QueryTokenizer qt, Directive directive, Class<?> owningClass, String fieldName, String schema) Reads a list of input parameters, from aQueryTokenizer
.void
QueryField.readTokenizerForResponseDefinition
(QueryTokenizer qt, Map<Class<?>, Map<String, Field>> aliasFields, String schema) Reads the definition of the expected response definition from the server.Builder.withQueryResponseDef
(String queryResponseDef) Builds aObjectResponse
from a part of a GraphQL query.Constructors in com.graphql_java_generator.client.request that throw GraphQLRequestPreparationExceptionModifierConstructorDescriptionAbstractGraphQLRequest
(org.springframework.graphql.client.GraphQlClient graphQlClient, String schema, String graphQLRequest) Creates the GraphQL request, for a full request.AbstractGraphQLRequest
(org.springframework.graphql.client.GraphQlClient graphQlClient, String schema, String graphQLRequest, RequestType requestType, String fieldName, InputParameter... inputParams) Create the instance for the given GraphQL request, for a partial request or a full request.
Important note: this constructor SHOULD be used only by the code generated by the plugin, not by external applications.AppliedGlobalFragment
(String currentToken, QueryTokenizer qt, String schema) Creates an instance for a global fragment, that has been read in the currentQueryTokenizer
.Fragment
(QueryTokenizer qt, Map<Class<?>, Map<String, Field>> aliasFields, String packageName, boolean inlineFragment, Class<?> clazz, String schema) Reads a Fragment definition, from the currentQueryTokenizer
.ObjectResponse
(org.springframework.graphql.client.GraphQlClient graphQlClient, String schema, String graphQLRequest) ObjectResponse
(org.springframework.graphql.client.GraphQlClient graphQlClient, String schema, String graphQLRequest, RequestType requestType, String queryName, InputParameter... inputParams) QueryField
(Class<?> owningClass, String fieldName) The constructor, when created by theBuilder
: it must provide the owningClassQueryField
(Class<?> owningClass, String fieldName, String fieldAlias) The constructor, when created by theBuilder
: it must provide the owningClass