https://github.com/ifirmawan/getting-started-with-graphql
Learning resource to understanding what is GraphQL
https://github.com/ifirmawan/getting-started-with-graphql
graphql graphql-server learning-resources
Last synced: 2 months ago
JSON representation
Learning resource to understanding what is GraphQL
- Host: GitHub
- URL: https://github.com/ifirmawan/getting-started-with-graphql
- Owner: ifirmawan
- Created: 2021-01-31T13:24:53.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-01-31T13:25:53.000Z (over 4 years ago)
- Last Synced: 2025-01-26T02:52:28.324Z (4 months ago)
- Topics: graphql, graphql-server, learning-resources
- Language: JavaScript
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.MD
Awesome Lists containing this project
README
## Getting Started with GraphQL
> Learning resource to understanding what is GraphQL based on documentation here
[https://graphql.org/graphql-js/](https://graphql.org/graphql-js/)## Run Query
```
mutation CreateMessage {
createMessage(input:{
content:"hi",
author:"iwan"
}) {
id
}
}query Exercise{
hello
quoteOfTheDay
rollTreeDice
random
rollDice(numDice: 2)
getDie(numSides: 6) {
rollOnce
roll(numRolls: 6)
}
}```