graphql_client

Build Status docs crates.io

A typed GraphQL client library for Rust.

Features

Getting started

A complete example using the GitHub GraphQL API is available, as well as sample rustdoc output.

Deriving specific traits on the response

The generated response types always derive serde::Deserialize but you may want to print them (Debug), compare them (PartialEq) or derive any other trait on it. You can achieve this with the response_derives option of the graphql attribute. Example:

```rust

[derive(GraphQLQuery)]

[graphql(

schemapath = "src/searchschema.graphql", querypath = "src/searchquery.graphql" querypath = "src/searchquery.graphql", response_derives = "Serialize,PartialEq", )] struct SearchQuery; ```

Custom scalars

The generated code will reference the scalar types as defined in the server schema. This means you have to provide matching rust types in the scope of the struct under derive. It can be as simple as declarations like type Email = String;. This gives you complete freedom on how to treat custom scalars, as long as they can be deserialized.

Query documents with multiple operations

You can write multiple operations in one query document (one .graphql file). You can then select one by naming the struct you #[derive(GraphQLQuery)] on with the same name as one of the operations. This is neat, as it allows sharing fragments between operations.

There is an example in the tests.

Examples

See the examples directory in this repository.

Roadmap

A lot of desired features have been defined in issues.

graphql_client does not provide any networking, caching or other client functionality yet. Integration with different HTTP libraries is planned, although building one yourself is trivial (just send the constructed request payload as JSON with a POST request to a GraphQL endpoint, modulo authentication).

There is an embryonic CLI for downloading schemas - the plan is to make it something similar to apollo-codegen.

Contributors

Many thanks go to all our contributors:

| | | | ------------------------------------------ | ------------ | | Alex Vlasov (@indifferentalex) | 👀 | | Fausto Nuñez Alberro (@brainlessdeveloper) | 👀 | | Peter Gundel (@peterfication) | 👀 | | Sooraj Chandran (@SoorajChandran) | 🤔 | | Tom Houlé (@tomhoule) | 💻📖🐛💡🔧👀 |

This project follows the all-contributors specification. Contributions of any kind are welcome!

Code of conduct

Anyone who interacts with this project in any space, including but not limited to this GitHub repository, must follow our code of conduct.

License

Licensed under either of these:

Contributing

Unless you explicitly state otherwise, any contribution you intentionally submit for inclusion in the work, as defined in the Apache-2.0 license, shall be dual-licensed as above, without any additional terms or conditions.