|  | před 1 rokem | |
|---|---|---|
| .. | ||
| src | před 1 rokem | |
| Cargo.toml | před 2 roky | |
| PullRequestsOpen.gql | před 1 rokem | |
| README.md | před 1 rokem | |
| build.rs | před 2 roky | |
Use a client to experiment and build your GraphQL query/mutation.
https://insomnia.rest/download
Once you're happy with the result, save your query in a <query>.gql file in this directory. It will serve as
documentation on how to reproduce the Rust boilerplate.
Introspect a schema and save it locally:
cynic introspect \
    -H "User-Agent: cynic/3.4.3" \
    -H "Authorization: Bearer [GITHUB_TOKEN]" \
    "https://api.github.com/graphql" \
    -o schemas/github.graphql
Execute a GraphQL query/mutation and save locally the Rust boilerplate:
cynic querygen --schema schemas/github.graphql --query query.gql