GraphQL server with subscribe

I would like to show our team how to use Rust to create a Type-Safe GraphQL server.

I see the package: GitHub - graphql-rust/juniper: GraphQL server library for Rust

But I am unclear which web framework to integrate it with to provide web-socket subscriptions. (I am looking for things that are quick starts).

Hyper, Iron, Rocket, and Warp

Which is recommended, or is there a full stack (client server) example already out there?

1 Like

There was a talk at the Copenhagen rust group a few months ago about someone using Rust for GraphQL in production, but I don't think it was ever added to the agenda for that month, so I can't find it. You could write to the email listed on every entry and ask if they remember who and which company it was.

As for the four listed options, I would probably go for rocket or warp. Hyper is relatively low level and I haven't heard of anyone using Iron in a long time.

This topic was automatically closed 90 days after the last reply. New replies are no longer allowed.