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

[derive(GraphQLQuery)]

[GraphQLQuery(

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> = client.post("/graphql", body)?; println!("{:#?}", res.body); } ```

Features

Planned features

 What is generated?

See the example generated module for a full example.

Examples

See the examples directory in this project.