4e69153e3e
git-subtree-dir: packages/graphql git-subtree-mainline:ac29392d7f
git-subtree-split:33e2f86ba7
14 lines
286 B
Dart
14 lines
286 B
Dart
import 'package:graphql_schema/graphql_schema.dart';
|
|
part 'main.g.dart';
|
|
|
|
@graphQLClass
|
|
class TodoItem {
|
|
String text;
|
|
|
|
@GraphQLDocumentation(description: 'Whether this item is complete.')
|
|
bool isComplete;
|
|
}
|
|
|
|
void main() {
|
|
print(todoItemGraphQLType.fields.map((f) => f.name));
|
|
}
|