Skip to content

joyfulelement/Lyrical-GraphQL

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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

About

Starter project from a GraphQL course on Udemy.com

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • JavaScript 96.9%
  • HTML 3.1%