This repo can be used as a starting point to deploy Rust GraphQL servers on Render.
It is based on the official juniper_rocket example
and uses GraphQL Playground and Juniper master
.
The sample app is up at https://rust-graphql.onrender.com. Use the query below to start exploring!
query {
human(id: "1002") {
id
name
friends {
id
name
}
appearsIn
}
}
See the guide at https://render.com/docs/deploy-rust-graphql.