https://github.com/graphql-go/playground
An example Golang GraphQL server written with graphql-go and graphql-relay-go
https://github.com/graphql-go/playground
Last synced: 6 months ago
JSON representation
An example Golang GraphQL server written with graphql-go and graphql-relay-go
- Host: GitHub
- URL: https://github.com/graphql-go/playground
- Owner: graphql-go
- License: mit
- Created: 2015-09-29T15:25:56.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2015-11-05T18:58:02.000Z (about 10 years ago)
- Last Synced: 2025-04-04T18:01:45.342Z (7 months ago)
- Language: CSS
- Homepage: http://bit.ly/try-graphql-go
- Size: 243 KB
- Stars: 122
- Watchers: 4
- Forks: 15
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# golang-graphql-playground
An example Golang GraphQL server written with [graphql-go](https://github.com/graphql-go/graphql) and [graphql-relay-go](https://github.com/graphql-go/relay)
Try the live demo: http://bit.ly/try-graphql-go
### Features
- [graphql-go](https://github.com/graphql-go/graphql): Golang GraphQL library
- [graphql-relay-go](https://github.com/graphql-go/relay): Golang GraphQL library helper to construct Relay-compliant server
- [graphiql](https://github.com/graphql/graphiql): In-browser IDE to explore GraphQL queries
- [Starwars GraphQL Schema](https://github.com/graphql-go/relay/tree/master/examples/starwars): GraphQL example schema defined with Relay capabilities with the help of `graphql-relay-go`.
### To run locally
```bash
# `cd` to project directory
$ cd
# get all dependencies
$ go get ./...
# launch server
$ go run main.go
# Go to http://localhost:8080 on your browser
```