use of graphql.schema.GraphQLNullableType in project graphql-java by graphql-java.
the class TraversalContext method enterImpl.
private void enterImpl(ArrayValue arrayValue) {
GraphQLNullableType nullableType = getNullableType(getInputType());
GraphQLInputType inputType = null;
if (nullableType instanceof GraphQLList) {
inputType = (GraphQLInputType) ((GraphQLList) nullableType).getWrappedType();
}
addInputType(inputType);
}
Aggregations