Uses of Interface
graphql.schema.GraphQLImplementingType
-
Packages that use GraphQLImplementingType Package Description graphql.schema graphql.schema.impl graphql.schema.validation graphql.util -
-
Uses of GraphQLImplementingType in graphql.schema
Classes in graphql.schema that implement GraphQLImplementingType Modifier and Type Class Description class
GraphQLInterfaceType
In graphql, an interface is an abstract type that defines the set of fields that a type must include to implement that interface.class
GraphQLObjectType
This is the work horse type and represents an object with one or more field values that can be retrieved by the graphql system. -
Uses of GraphQLImplementingType in graphql.schema.impl
Methods in graphql.schema.impl that return types with arguments of type GraphQLImplementingType Modifier and Type Method Description java.util.Map<java.lang.String,java.util.List<GraphQLImplementingType>>
SchemaUtil. groupImplementationsForInterfacesAndObjects(GraphQLSchema schema)
-
Uses of GraphQLImplementingType in graphql.schema.validation
Fields in graphql.schema.validation with type parameters of type GraphQLImplementingType Modifier and Type Field Description private static java.util.Map<java.lang.Class<? extends GraphQLImplementingType>,java.lang.String>
TypesImplementInterfaces. TYPE_OF_MAP
Methods in graphql.schema.validation with parameters of type GraphQLImplementingType Modifier and Type Method Description private void
TypesImplementInterfaces. check(GraphQLImplementingType implementingType, SchemaValidationErrorCollector validationErrorCollector)
private void
TypesImplementInterfaces. checkFieldArgumentEquivalence(GraphQLImplementingType implementingType, GraphQLInterfaceType interfaceType, SchemaValidationErrorCollector validationErrorCollector, GraphQLFieldDefinition interfaceFieldDef, GraphQLFieldDefinition objectFieldDef)
private void
TypesImplementInterfaces. checkFieldTypeCompatibility(GraphQLImplementingType implementingType, GraphQLInterfaceType interfaceType, SchemaValidationErrorCollector validationErrorCollector, GraphQLFieldDefinition interfaceFieldDef, GraphQLFieldDefinition objectFieldDef)
private void
TypesImplementInterfaces. checkObjectImplementsInterface(GraphQLImplementingType implementingType, GraphQLInterfaceType interfaceType, SchemaValidationErrorCollector validationErrorCollector)
private void
TypesImplementInterfaces. checkTransitiveImplementations(GraphQLImplementingType implementingType, GraphQLInterfaceType interfaceType, SchemaValidationErrorCollector validationErrorCollector)
-
Uses of GraphQLImplementingType in graphql.util
Method parameters in graphql.util with type arguments of type GraphQLImplementingType Modifier and Type Method Description private static java.util.Set<GraphQLFieldDefinition>
Anonymizer. getSameFields(java.lang.String fieldName, java.lang.String objectOrInterfaceName, java.util.Map<java.lang.String,java.util.List<GraphQLImplementingType>> interfaceToImplementations, GraphQLSchema schema)
private static void
Anonymizer. getSameFieldsImpl(java.lang.String fieldName, java.lang.String curObjectOrInterface, java.util.Map<java.lang.String,java.util.List<GraphQLImplementingType>> interfaceToImplementations, GraphQLSchema schema, java.util.Set<java.lang.String> alreadyChecked, java.util.Set<GraphQLFieldDefinition> result)
-