isAbstractType function

bool isAbstractType(
  1. GraphQLType type
)

Implementation

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