Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/sogko/fossasia-2016-graphql-demo
Demo used to showcase GraphQL (on Go / Golang)
https://github.com/sogko/fossasia-2016-graphql-demo
Last synced: about 10 hours ago
JSON representation
Demo used to showcase GraphQL (on Go / Golang)
- Host: GitHub
- URL: https://github.com/sogko/fossasia-2016-graphql-demo
- Owner: sogko
- License: mit
- Created: 2016-03-19T00:17:22.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-03-19T23:35:04.000Z (over 8 years ago)
- Last Synced: 2024-10-12T13:24:39.242Z (about 1 month ago)
- Language: CSS
- Size: 2.64 MB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# fossasia-2016-graphql-demo
Demo project used to showcase GraphQL capabilities
## Slides
Slides for the talk @ FOSSASIA 2016 available here:
__Introduction to GraphQL (or How I Learned to Stop Worrying About REST APIs__:
- [PDF](https://github.com/sogko/fossasia-2016-graphql-demo/raw/master/slides/fossasia-2016-presentation.pdf)
- [Slideshare](http://www.slideshare.net/AhmadHafizIsmail/introduction-to-graphql-or-how-i-learned-to-stop-worrying-about-rest-apis)## Reminder
#### We are looking for more contributors for `graphql-go`
Feel free to dive right in and submit a PR @ [graphql-go/graphql](https://github.com/graphql-go/graphql)Participate in our discussion =)
### Features
Forked from [https://github.com/graphql-go/playground](https://github.com/graphql-go/playground)- [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
```