platform/graphql_schema/test/common.dart
2018-08-02 09:31:54 -04:00

14 lines
480 B
Dart

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