An open API service indexing awesome lists of open source software.

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

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)
}
}

```