platform/graphql_schema/lib/src/argument.dart
2018-08-02 09:31:54 -04:00

8 lines
247 B
Dart

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});
}