isAbstractType function
Implementation
bool isAbstractType(GraphQLType type) =>
type is GraphQLObjectType && type.isInterface || type is GraphQLUnionType;
bool isAbstractType(GraphQLType type) =>
type is GraphQLObjectType && type.isInterface || type is GraphQLUnionType;