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
|
2018-08-04 03:05:51 +00:00
|
|
|
enum Episode {
|
|
|
|
NEWHOPE,
|
|
|
|
EMPIRE,
|
|
|
|
JEDI,
|
|
|
|
}
|