part of graphql_schema.src.schema; class GraphQLUnionType extends GraphQLType with _NonNullableMixin { final List> possibleTypes; final String description; GraphQLUnionType(this.possibleTypes, {this.description}) { assert(possibleTypes.every(( t) => t is GraphQLUnionType), 'The member types of a Union type must all be Object base types; Scalar, Interface and Union types may not be member types of a Union. Similarly, wrapping types may not be member types of a Union'); assert(possibleTypes .isNotEmpty, 'A Union type must define one or more member types'); } @override String get name => possibleTypes.map((t) => t.name).join(' | ') }