platform/graphql_schema/example/todo.dart

42 lines
850 B
Dart
Raw Normal View History

2018-08-02 13:31:54 +00:00
import 'package:graphql_schema/graphql_schema.dart';
final GraphQLSchema todoSchema = new GraphQLSchema(
2018-08-02 19:22:16 +00:00
query: objectType('Todo', fields: [
field(
'text',
2018-08-02 15:17:14 +00:00
type: graphQLString.nonNullable(),
resolve: resolveToNull,
),
field(
'created_at',
type: graphQLDate,
resolve: resolveToNull,
),
]),
);
2018-08-02 13:31:54 +00:00
main() {
// Validation
var validation = todoSchema.query.validate(
'@root',
2018-08-02 15:17:14 +00:00
{
'foo': 'bar',
'text': null,
'created_at': 24,
},
);
2018-08-02 13:31:54 +00:00
if (validation.successful) {
print('This is valid data!!!');
} else {
print('Invalid data.');
validation.errors.forEach((s) => print(' * $s'));
}
// Serialization
print(todoSchema.query.serialize({
'text': 'Clean your room!',
'created_at': new DateTime.now().subtract(new Duration(days: 10))
}));
}