platform/example_star_wars/lib/src/models/episode.dart

12 lines
228 B
Dart
Raw Normal View History

2018-08-04 15:12:26 +00:00
import 'package:graphql_schema/graphql_schema.dart';
2019-03-29 03:37:56 +00:00
part 'episode.g.dart';
2018-08-04 15:12:26 +00:00
@GraphQLDocumentation(
description: 'The episodes of the Star Wars original trilogy.')
2019-03-29 03:37:56 +00:00
@graphQLClass
enum Episode {
NEWHOPE,
EMPIRE,
JEDI,
}