platform/graphql_schema/lib/src/argument.dart

9 lines
247 B
Dart
Raw Normal View History

2018-08-02 13:31:54 +00:00
part of graphql_schema.src.schema;
class GraphQLFieldArgument<Value, Serialized> {
final String name;
final GraphQLType<Value, Serialized> type;
final Value defaultValue;
GraphQLFieldArgument(this.name, this.type, {this.defaultValue});
}