Package | Description |
---|---|
graphql.execution | |
graphql.relay | |
graphql.schema | |
graphql.schema.idl | |
graphql.schema.visibility |
Constructor and Description |
---|
NonNullableValueCoercedAsNullException(GraphQLInputObjectField inputTypeField) |
Modifier and Type | Method and Description |
---|---|
GraphQLFieldDefinition |
Relay.mutation(String name,
String fieldName,
List<GraphQLInputObjectField> inputFields,
List<GraphQLFieldDefinition> outputFields,
DataFetcher dataFetcher) |
GraphQLFieldDefinition |
Relay.mutationWithClientMutationId(String name,
String fieldName,
List<GraphQLInputObjectField> inputFields,
List<GraphQLFieldDefinition> outputFields,
DataFetcher dataFetcher) |
Modifier and Type | Method and Description |
---|---|
GraphQLInputObjectField |
GraphQLInputObjectField.Builder.build() |
GraphQLInputObjectField |
GraphQLInputObjectType.getField(String name) |
GraphQLInputObjectField |
GraphQLInputObjectType.getFieldDefinition(String name) |
GraphQLInputObjectField |
GraphQLInputFieldsContainer.getFieldDefinition(String name) |
GraphQLInputObjectField |
GraphQLInputObjectField.transform(Consumer<GraphQLInputObjectField.Builder> builderConsumer)
This helps you transform the current GraphQLInputObjectField into another one by starting a builder with all
the current values and allows you to transform it how you want.
|
Modifier and Type | Method and Description |
---|---|
List<GraphQLInputObjectField> |
GraphQLInputObjectType.getFieldDefinitions() |
List<GraphQLInputObjectField> |
GraphQLInputFieldsContainer.getFieldDefinitions() |
List<GraphQLInputObjectField> |
GraphQLInputObjectType.getFields() |
Modifier and Type | Method and Description |
---|---|
GraphQLInputObjectType.Builder |
GraphQLInputObjectType.Builder.field(GraphQLInputObjectField field) |
static GraphQLInputObjectField.Builder |
GraphQLInputObjectField.newInputObjectField(GraphQLInputObjectField existing) |
TraversalControl |
GraphQLTypeVisitorStub.visitGraphQLInputObjectField(GraphQLInputObjectField node,
TraverserContext<GraphQLType> context) |
TraversalControl |
GraphQLTypeVisitor.visitGraphQLInputObjectField(GraphQLInputObjectField node,
TraverserContext<GraphQLType> context) |
Modifier and Type | Method and Description |
---|---|
GraphQLInputObjectType.Builder |
GraphQLInputObjectType.Builder.fields(List<GraphQLInputObjectField> fields) |
Constructor and Description |
---|
Builder(GraphQLInputObjectField existing) |
Constructor and Description |
---|
GraphQLInputObjectType(String name,
String description,
List<GraphQLInputObjectField> fields)
Deprecated.
use the
GraphQLInputObjectType.newInputObject() builder pattern instead, as this constructor will be made private in a future version. |
GraphQLInputObjectType(String name,
String description,
List<GraphQLInputObjectField> fields,
List<GraphQLDirective> directives,
InputObjectTypeDefinition definition)
Deprecated.
use the
GraphQLInputObjectType.newInputObject() builder pattern instead, as this constructor will be made private in a future version. |
Modifier and Type | Method and Description |
---|---|
default GraphQLInputObjectField |
SchemaDirectiveWiring.onInputObjectField(SchemaDirectiveWiringEnvironment<GraphQLInputObjectField> environment)
This is called when an input object field is encountered, which gives the schema directive a chance to modify the shape and behaviour
of that DSL element
|
Modifier and Type | Method and Description |
---|---|
default GraphQLInputObjectField |
SchemaDirectiveWiring.onInputObjectField(SchemaDirectiveWiringEnvironment<GraphQLInputObjectField> environment)
This is called when an input object field is encountered, which gives the schema directive a chance to modify the shape and behaviour
of that DSL element
|
Modifier and Type | Method and Description |
---|---|
default GraphQLInputObjectField |
GraphqlFieldVisibility.getFieldDefinition(GraphQLInputFieldsContainer fieldsContainer,
String fieldName)
Called to get a named field from an input object type
|
GraphQLInputObjectField |
DefaultGraphqlFieldVisibility.getFieldDefinition(GraphQLInputFieldsContainer fieldsContainer,
String fieldName) |
GraphQLInputObjectField |
BlockedFields.getFieldDefinition(GraphQLInputFieldsContainer fieldsContainer,
String fieldName) |
Modifier and Type | Method and Description |
---|---|
default List<GraphQLInputObjectField> |
GraphqlFieldVisibility.getFieldDefinitions(GraphQLInputFieldsContainer fieldsContainer)
Called to get the list of fields from an input object type
|
List<GraphQLInputObjectField> |
DefaultGraphqlFieldVisibility.getFieldDefinitions(GraphQLInputFieldsContainer fieldsContainer) |
List<GraphQLInputObjectField> |
BlockedFields.getFieldDefinitions(GraphQLInputFieldsContainer fieldsContainer) |
Copyright © 2019. All rights reserved.