Package graphql.schema
Interface GraphQLInputValueDefinition
-
- All Superinterfaces:
GraphQLDirectiveContainer
,GraphQLInputSchemaElement
,GraphQLNamedSchemaElement
,GraphQLSchemaElement
- All Known Implementing Classes:
GraphQLArgument
,GraphQLInputObjectField
@PublicApi public interface GraphQLInputValueDefinition extends GraphQLDirectiveContainer, GraphQLInputSchemaElement
Named schema elements that contain input type information.- See Also:
GraphQLInputType
,GraphQLInputObjectField
,GraphQLArgument
-
-
Field Summary
-
Fields inherited from interface graphql.schema.GraphQLDirectiveContainer
CHILD_APPLIED_DIRECTIVES, CHILD_DIRECTIVES
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description <T extends GraphQLInputType>
TgetType()
-
Methods inherited from interface graphql.schema.GraphQLDirectiveContainer
getAllAppliedDirectivesByName, getAllDirectivesByName, getAppliedDirective, getAppliedDirectives, getAppliedDirectives, getDirective, getDirectives, getDirectives, getDirectivesByName, hasAppliedDirective, hasDirective
-
Methods inherited from interface graphql.schema.GraphQLNamedSchemaElement
getDefinition, getDescription, getName
-
Methods inherited from interface graphql.schema.GraphQLSchemaElement
accept, copy, equals, getChildren, getChildrenWithTypeReferences, hashCode, withNewChildren
-
-
-
-
Method Detail
-
getType
<T extends GraphQLInputType> T getType()
-
-