Crates.io | async-graphql-relay |
lib.rs | async-graphql-relay |
version | 0.4.0 |
source | src |
created_at | 2021-05-17 17:01:16.667041 |
updated_at | 2023-05-18 09:13:58.516841 |
description | Relay support for async-graphql |
homepage | https://github.com/oscartbeaumont/async-graphql-relay |
repository | https://github.com/oscartbeaumont/async-graphql-relay |
max_upload_size | |
id | 398662 |
size | 13,151 |
This crate aims to bring the Relay server specification to async-graphql. The Relay specification requires three main things:
node
query
get()
method on the type specified in the globally unique ID to refetch the object.Add async-graphql-relay
to your dependencies:
[dependencies]
# ...
async-graphql = "2.8.5"
async-graphql-relay= "0.3.0"
Check out this example application.