platform/graphql_schema/lib/src/union.dart

18 lines
777 B
Dart
Raw Normal View History

2018-08-04 00:22:50 +00:00
part of graphql_schema.src.schema;
class GraphQLUnionType<Value, Serialized> extends GraphQLType<Value, Serialized>
with
_NonNullableMixin<Value, Serialized> {
final List<GraphQLType<Value, Serialized>> 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(' | ')
}