Uses of Class
com.graphql_java_generator.client.request.InputParameter
| Package | Description |
|---|---|
| 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.request
Methods in com.graphql_java_generator.client.request that return InputParameter Modifier and Type Method Description static InputParameterInputParameter. newBindParameter(java.lang.String name, java.lang.String bindParameterName, boolean mandatory)Deprecated.static InputParameterInputParameter. newBindParameter(java.lang.String name, java.lang.String bindParameterName, boolean mandatory, graphql.schema.GraphQLScalarType graphQLScalarType)Deprecated.static InputParameterInputParameter. newHardCodedParameter(java.lang.String name, java.lang.Object value)Deprecated.Methods in com.graphql_java_generator.client.request that return types with arguments of type InputParameter Modifier and Type Method Description java.util.List<InputParameter>ObjectResponse. getInputParameters()Retrieves theInputParameterfor the field, which response is defined by this instanceMethods in com.graphql_java_generator.client.request with parameters of type InputParameter Modifier and Type Method Description voidObjectResponse. addInputParameter(InputParameter inputParameter)Add anInputParameterto this object.BuilderBuilder. withInputParameter(InputParameter inputParameter)Deprecated.Method parameters in com.graphql_java_generator.client.request with type arguments of type InputParameter Modifier and Type Method Description voidObjectResponse. addInputParameters(java.util.List<InputParameter> inputParameters)Add a list ofInputParameters to this object.BuilderBuilder. withField(java.lang.String fieldName, java.lang.String alias, java.util.List<InputParameter> inputParameters)Adds a scalar field with an alias, to theObjectResponsewe are building.BuilderBuilder. withInputParameters(java.util.List<InputParameter> inputParameters)Add a list ofInputParameters to the current Object Response definition.