NOTE: This is a WIP - I plan to write proper documentation and make a formal release soon.
Derive Rust code to safely interact with queries written in the GraphQL query language.
This library does not provide any networking, caching or other client functionality, it is just meant to make it easy to interact with a GraphQL query and the corresponding response in a strongly typed way. Building a client can be as simple as this:
```rust
query = "/graphql/queries/my_query.graphql",
schema = "/graphql/schema.graphql"
)] struct MyQuery;
fn performmyquery(variables: &my_query::Variables) -> Result<(), failure::Error> {
let body = MyQuery::expand(variables);
let client = reqwest::Client::new();
let res: HttpResponse
ResponseData
struct implementing serde::Deserialize
Variables
struct meant to contain the variables expected by the queryGraphQLQuery
trait for the struct under deriveSee the example generated module for a full example.
See the examples directory in this project.