Uses of Class
com.graphql_java_generator.client.request.InputParameter
Package | Description |
---|---|
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.
|
-
Uses of InputParameter in com.graphql_java_generator.client.directive
Methods in com.graphql_java_generator.client.directive that return types with arguments of type InputParameter Modifier and Type Method Description java.util.List<InputParameter>
Directive. getArguments()
Method parameters in com.graphql_java_generator.client.directive with type arguments of type InputParameter Modifier and Type Method Description void
Directive. setArguments(java.util.List<InputParameter> arguments)
-
Uses of InputParameter in com.graphql_java_generator.client.request
Methods in com.graphql_java_generator.client.request that return InputParameter Modifier and Type Method Description static InputParameter
InputParameter. newBindParameter(java.lang.String name, java.lang.String bindParameterName, InputParameter.InputParameterType type, java.lang.String graphQLTypeName, boolean mandatory, int listDepth, boolean itemMandatory)
Creates and returns a new instance ofInputParameter
, which is bound to a bind variable.static InputParameter
InputParameter. newGraphQLVariableParameter(java.lang.String name, java.lang.String graphQLTypeName, boolean mandatory, int listDepth, boolean itemMandatory)
Creates and returns a new instance ofInputParameter
, which value is given, and can not be changed afterwards.static InputParameter
InputParameter. newHardCodedParameter(java.lang.String name, java.lang.Object value, java.lang.String graphQLTypeName, boolean mandatory, int listDepth, boolean itemMandatory)
Creates and returns a new instance ofInputParameter
, which value is given, and can not be changed afterwards.Methods in com.graphql_java_generator.client.request that return types with arguments of type InputParameter Modifier and Type Method Description static java.util.List<InputParameter>
InputParameter. readTokenizerForInputParameters(QueryTokenizer qt, Directive directive, java.lang.Class<?> owningClass, java.lang.String fieldName)
Reads a list of input parameters, from aQueryTokenizer
.Method parameters in com.graphql_java_generator.client.request with type arguments of type InputParameter Modifier and Type Method Description static void
InputParameter. appendInputParametersToGraphQLRequests(boolean writingGraphQLVariables, java.lang.StringBuilder sb, java.util.List<InputParameter> inputParameters, java.util.Map<java.lang.String,java.lang.Object> parameters)
Constructors in com.graphql_java_generator.client.request with parameters of type InputParameter Constructor Description AbstractGraphQLRequest(java.lang.String graphQLRequest, RequestType requestType, java.lang.String fieldName, InputParameter... inputParams)
Create the instance, from the GraphQL request, for a partial request.
Important note: this constructor SHOULD NOT be called by external application.Builder(java.lang.Class<? extends AbstractGraphQLRequest> graphQLRequestClass, java.lang.String fieldName, RequestType requestType, InputParameter... inputParams)
This Builder allows to build a Partial request, that is a request for only one query/mutation/subscription.ObjectResponse(java.lang.String graphQLRequest, RequestType requestType, java.lang.String queryName, InputParameter... inputParams)