https://github.com/itsthatguy/graphql-demo
https://github.com/itsthatguy/graphql-demo
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/itsthatguy/graphql-demo
- Owner: itsthatguy
- Created: 2018-10-08T20:59:41.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-10-08T21:00:52.000Z (over 7 years ago)
- Last Synced: 2025-01-16T16:46:39.093Z (over 1 year ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 1
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# graphql-demo
```
npm install
node index.js
```
visit: http://localhost:4000/graphql
Use the following queries:
Order a hamburger with cheddar cheese, and no onions
```
{
orderHamburger(cheese: "cheddar") {
burger
bun
lettuce
onions
cheese
}
}
```
Order a portobello burger without onions
```
{
orderHamburger(type: "portobello") {
burger
bun
cheese
}
}
```