This GraphQL query fetches All Lyrics
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query allLyrics { lyrics (skip: 0, limit: 3) { results { ACL artist { id } createdAt id lyric songName songTime updatedAt } } }
{ "data": { "lyrics": { "results": [ { "ACL": null, "artist": { "id": "kn6wnQ7zAM" }, "createdAt": "2020-01-27T16:37:42.167Z", "id": "MOlx6HPtga", "lyric": "So what's the price fortune and fame? \nFriendship going down the drain \nWhat becomes of those you meet \nStepping stones beneath your feet \n\nYou've got to reach the highest peak \nAmbition isn't for the weak \nDetermined so you are inside \nBut who are those you push aside? \n\nPeople, people, people\n\nSomething just won't let you stop \nTill you make it to the top \nWhen you're there you'll soon forget \nAll the kindness you once met \n\nSo don't forget as you grow older \nKeep on looking over your shoulder \nBitterness is all you'll find \nDon't tread on those you leave behind \n\nPeople, people, people", "songName": "People", "songTime": "2:42", "updatedAt": "2020-01-27T16:37:42.167Z" }, { "ACL": null, "artist": { "id": "kn6wnQ7zAM" }, "createdAt": "2020-01-27T16:37:42.169Z", "id": "1cmYdhP0jn", "lyric": "So what's the price fortune and fame? \nFriendship going down the drain \nWhat becomes of those you meet \nStepping stones beneath your feet \n\nYou've got to reach the highest peak \nAmbition isn't for the weak \nDetermined so you are inside \nBut who are those you push aside? \n\nPeople, people, people\n\nSomething just won't let you stop \nTill you make it to the top \nWhen you're there you'll soon forget \nAll the kindness you once met \n\nSo don't forget as you grow older \nKeep on looking over your shoulder \nBitterness is all you'll find \nDon't tread on those you leave behind \n\nPeople, people, people", "songName": "People", "songTime": "2:37", "updatedAt": "2020-01-27T16:37:42.169Z" }, { "ACL": null, "artist": { "id": "kn6wnQ7zAM" }, "createdAt": "2020-01-27T16:37:42.168Z", "id": "XbHBHq5zz3", "lyric": "So what's the price fortune and fame? \nFriendship going down the drain \nWhat becomes of those you meet \nStepping stones beneath your feet \n\nYou've got to reach the highest peak \nAmbition isn't for the weak \nDetermined so you are inside \nBut who are those you push aside? \n\nPeople, people, people\n\nSomething just won't let you stop \nTill you make it to the top \nWhen you're there you'll soon forget \nAll the kindness you once met \n\nSo don't forget as you grow older \nKeep on looking over your shoulder \nBitterness is all you'll find \nDon't tread on those you leave behind \n\nPeople, people, people", "songName": "People", "songTime": "3:16", "updatedAt": "2020-01-27T16:37:42.168Z" } ] } } }