A wrapper around graphql_client for easier use with Glimesh. This is currently a work in progress, and should be considered beta, but it is being used to power Oaty in production.
More examples can be found in the examples/
directory.
```rust
schema_path = "examples/graphql/schema.json",
query_path = "examples/graphql/user_details.graphql",
response_derives = "Debug"
)] pub struct UserDetailsQuery;
let auth = Auth::clientid(clientid); let conn = Connection::new(auth); let client = conn.into_client();
let res = client
.query::
let user = res.user; println!("User details: {:#?}", user); ```
Licensed under either of
at your option.
Unless you explicitly state otherwise, any contribution intentionally submitted for inclusion in the work by you, as defined in the Apache-2.0 license, shall be dual licensed as above, without any additional terms or conditions.