platform/graphql_schema/test/common.dart
2018-08-02 15:22:16 -04:00

14 lines
501 B
Dart

import 'package:graphql_schema/graphql_schema.dart';
final GraphQLObjectType pokemonType = objectType('Pokemon', fields:[
field('species', type: graphQLString),
field('catch_date', type: graphQLDate)
]);
final GraphQLObjectType trainerType =
objectType('Trainer', fields:[field('name', type: graphQLString)]);
final GraphQLObjectType pokemonRegionType = objectType('PokemonRegion', fields:[
field('trainer', type: trainerType),
field('pokemon_species', type: listType(pokemonType))
]);