0.3.0 (2022-09-06)
-
Allow submatching - any set of matching fields and valid arguments are allowed to pass. The code snippet below shows a short example:
## gqt query { a( a_0: val = 0 a_1: val = 1 ) { a0 a1 } } ## gql query { a( a_0: 0 ) { a0 } } ## PASSED
-
Add
combine N { ... }
blocks. These blocks allow to make combinations of up to N fields. Instead of defining many templates, they can be combined sometimes:query { combine 2 { a b c } } ### Replaces 3 separate templates
- Fix panic in API match field on subsequent requests
- Fix shell broken pipe handling
- Add inline fragments suppot
- Initial release