use of graphql.schema.SchemaUtil in project graphql-java by graphql-java.
the class TraversalContext method enterImpl.
private void enterImpl(SelectionSet selectionSet) {
GraphQLUnmodifiedType rawType = new SchemaUtil().getUnmodifiedType(getOutputType());
GraphQLCompositeType parentType = null;
if (rawType instanceof GraphQLCompositeType) {
parentType = (GraphQLCompositeType) rawType;
}
addParentType(parentType);
}
Aggregations