Skip to content

ifirmawan/getting-started-with-graphql

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Getting Started with GraphQL

Learning resource to understanding what is GraphQL based on documentation here 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)
  }
}

About

Learning resource to understanding what is GraphQL

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published