Skip to content

Latest commit

 

History

History
35 lines (28 loc) · 356 Bytes

README.md

File metadata and controls

35 lines (28 loc) · 356 Bytes

Lyrical-GraphQL

Starter project from a GraphQL course on Udemy.com

Useful GraphQL Queries

mutation {
  addSong(title:"Warm Night"){
    id
  }
}

mutation {
  addLyricToSong(songId:"5a6e508a52d93b2820afd606", content:"tonight...it's warm~"){
    id
  }
}


{
  songs {
    id
    title
    lyrics {
      content
    }
  }
}