graphql_parser2 4.0.0 graphql_parser2: ^4.0.0 copied to clipboard
Parses GraphQL queries and schemas. Also includes classes for the GraphQL AST.
Change Log #
4.0.0 #
- Updated to SDK 2.16.x
3.0.0 #
- Implemented directives
- Updated to SDK 2.15.x
2.1.0 #
- Upgraded from
pendantic
tolints
linter
2.0.2 #
- Fixed NNBD issues
2.0.1 #
- Updated array_value.dart
- Updated string_value.dart
2.0.0 #
- Migrated to support Dart SDK 2.12.x NNBD
- Rename
graphql_parser
tographql_parser2
1.2.0 #
- Combine
ValueContext
andVariableContext
into a singleInputValueContext
supertype.- Add
T computeValue(Map<String, dynamic> variables);
- Resolve ##23.
- Add
- Deprecate old
ValueOrVariable
class, and parser/AST methods related to it.
1.1.4 #
- Fix broken int variable parsing - https://github.com/angel-dart/graphql/pull/32
1.1.2 #
- Parse the
subscription
keyword.
1.1.1 #
- Pubspec updates for Dart 2.
1.1.0 #
- Removed
GraphQLVisitor
. - Enable parsing operations without an explicit name.
- Parse
null
. - Completely ignore commas.
- Ignore Unicode BOM, as per the spec.
- Parse object values.
- Parse enum values.