isIntrospectionType function
Returns true if the type
is an introspection type
Implementation
bool isIntrospectionType(GraphQLType type) {
return introspectionTypeNames.contains(type.name);
}
Returns true if the type
is an introspection type
bool isIntrospectionType(GraphQLType type) {
return introspectionTypeNames.contains(type.name);
}