This is still a WIP, the main use for it now is to download the schema.json
from a GraphQL endpoint, which you can also do with apollo-codegen.
bash
cargo install graphql_client_cli --force
``` Get the schema from a live GraphQL API. The schema is printed to stdout.
USAGE:
graphql-client introspect-schema [OPTIONS]
FLAGS: -h, --help Prints help information -V, --version Prints version information
OPTIONS:
--authorization
ARGS:
```
USAGE:
graphql-client generate [FLAGS] [OPTIONS]
FLAGS: -h, --help Prints help information --no-formatting If you don't want to execute rustfmt to generated code, set this option. Default value is false. Formating feature is disabled as default installation. -V, --version Prints version information
OPTIONS:
-a, --additional-derives
-m, --module_visibility <module_visibility>
You can choose module and target struct visibility from pub and private. Default value is pub.
-o, --selected-operation <selected_operation>
Name of target query. If you don't set this parameter, cli generate all queries in query file.
ARGS:
If you want to use formatting feature, you should install like this.
bash
cargo install graphql_client_cli --features rustfmt --force