Uses of Package
com.graphql_java_generator.client.request
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.
|
-
Classes in com.graphql_java_generator.client.request used by com.graphql_java_generator.client Class Description AbstractGraphQLRequest This class contains the description for a GraphQL request that will be sent to the server. -
Classes in com.graphql_java_generator.client.request used by com.graphql_java_generator.client.directive Class Description InputParameter Contains an input parameter, to be sent to a query (mutation...).QueryTokenizer This class is responsible to split the GraphQL query into meaningful tokens: the spaces, EOL (...) are removed and the (, @, { (...) are sent as token. -
Classes in com.graphql_java_generator.client.request used by com.graphql_java_generator.client.request Class Description AbstractGraphQLRequest This class contains the description for a GraphQL request that will be sent to the server.Builder This builder is provided for compatibility of existing code, that would have been developed before the 1.6 release.Fragment InputParameter Contains an input parameter, to be sent to a query (mutation...).InputParameter.InputParameterType Indicates the kind of parameterObjectResponse This useless class is here only for compatibility with existing code, developped before the 1.6 release.QueryField This class gives parsing capabilities for the QueryString for one object.
For instance, for the GraphQL query queryType.boards("{id name publiclyAvailable topics(since: \"2018-12-20\"){id}}"), it is created for the field named boards, then the#readTokenizerForResponseDefinition(StringTokenizer)
is called for the whole String.QueryTokenizer This class is responsible to split the GraphQL query into meaningful tokens: the spaces, EOL (...) are removed and the (, @, { (...) are sent as token.