Rusty GraphQL

A simple GraphQL server using Tokio and Warp.

Usage

cargo run

Then visit http://localhost:4000/grahql to use the playground interface.

Sample Query

query GetUsers {
  getUsers {
    id
    name
  }
}