async-graphql-relay
Relay support for async-graphql
This crate aims to bring the [Relay server specification](https://relay.dev/docs/guides/graphql-server-specification) to [async-graphql](https://github.com/async-graphql/async-graphql). The Relay specification requires three main things:
- Globally unique IDs
- This crate achieves this by appending the database UUID with an integer which represents the objects type
- Refetching using the `node` query
- This crate calls a `get()` method on the type specified in the globally unique ID to refetch the object.
- Connections for Pagination
- This feature already exists in [async-graphql](https://github.com/async-graphql/async-graphql). [Documentation for this feature is here](https://async-graphql.github.io/async-graphql/en/cursor_connections.html).
## Install
Add `async-graphql-relay` to your dependencies:
```toml
[dependencies]
# ...
async-graphql = "2.8.5"
async-graphql-relay= "0.3.0"
```
## Usage
Check out [this example application](https://github.com/oscartbeaumont/async-graphql-relay/tree/main/example).