examples/graphql/async-graphql at master · FullStackAlex/examples · GitHub
Skip to content

Latest commit

 

History

History
 
 

Folders and files

README.md

GraphQL using async-graphql

Getting started using async-graphql with Actix Web.

Usage

cd graphql/graphql-demo
cargo run

Endpoints

GET/POST  http://localhost:8080/graphql   GraphQL endpoint
GET       http://localhost:8080/graphiql  GraphQL playground UI

Query Examples

{
  humans {
    edges {
      node {
        id
        name
        friends {
          id
          name
        }
        appearsIn
        homePlanet
      }
    }
  }
}