A small command-line tool for interacting with GQL APIs
A small tool for interacting with GQL APIs
Arguments, mutations, aliases are all supported. Other features, such as fragments, are left unsupported with the opinion that, when a query becomes large enough to warrant them, you might be best feeding in a file containing your query.
Under the surface, generates a GraphQL query that looks like:
Queries are made simple using three key concepts:
- Dot-notation, with
.
indicating the beginning of a nested query level - A comma
,
indicates a field on the same level as the prior field - Parenthesis
()
for filters and “quoting” aliases
Read more here: Source link