Skip to content

stepankuzmin/graphql-playground

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GraphQL playground

npx create-react-app graphql-playground --typescript

Running Hasura GraphQL server

https://docs.hasura.io/1.0/graphql/manual/deployment/docker/index.html

docker run -p 8080:8080 \
  -e HASURA_GRAPHQL_DATABASE_URL=postgres://postgres@host.docker.internal/postgres \
  -e HASURA_GRAPHQL_ENABLE_CONSOLE=true \
  hasura/graphql-engine:latest

Generate typings and Appolo components

yarn generate