4e69153e3e
git-subtree-dir: packages/graphql git-subtree-mainline:ac29392d7f
git-subtree-split:33e2f86ba7
15 lines
488 B
Dart
15 lines
488 B
Dart
import 'package:graphql_schema/graphql_schema.dart';
|
|
|
|
final GraphQLObjectType pokemonType = objectType('Pokemon', fields: [
|
|
field('species', graphQLString),
|
|
field('catch_date', graphQLDate)
|
|
]);
|
|
|
|
final GraphQLObjectType trainerType =
|
|
objectType('Trainer', fields: [field('name', graphQLString)]);
|
|
|
|
final GraphQLObjectType pokemonRegionType = objectType('PokemonRegion',
|
|
fields: [
|
|
field('trainer', trainerType),
|
|
field('pokemon_species', listOf(pokemonType))
|
|
]);
|