This GraphQL query fetches All Artists
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
query allArtists { artists (skip: 0, limit: 3) { results { ACL createdAt done id name songs (skip: 0, limit: 3) { results { id } } startingLetter updatedAt url } } }
{ "data": { "artists": { "results": [ { "ACL": null, "createdAt": "2020-01-30T13:17:56.319Z", "done": true, "id": "Acg80DGZuP", "name": "!!! (Chk Chk Chk)", "songs": { "results": [ { "id": "3DhDrpREj2" }, { "id": "6HldGAQSyR" }, { "id": "An0TpHGJea" } ] }, "startingLetter": "0", "updatedAt": "2020-01-30T13:55:47.386Z", "url": "artist/%21%21%21-%28Chk-Chk-Chk%29/2137844963" }, { "ACL": null, "createdAt": "2020-01-30T13:17:56.319Z", "done": true, "id": "SdhOsUcGeX", "name": "!Action Pact!", "songs": { "results": [ { "id": "WbvUDGV9Oi" }, { "id": "acJYn5pFCH" }, { "id": "d82DVOqjz8" } ] }, "startingLetter": "0", "updatedAt": "2020-01-30T13:55:50.337Z", "url": "artist/%21Action-Pact%21/15289" }, { "ACL": null, "createdAt": "2020-01-30T13:17:56.319Z", "done": true, "id": "Vf66bVH25t", "name": "!Distain", "songs": { "results": [] }, "startingLetter": "0", "updatedAt": "2020-01-30T13:55:50.812Z", "url": "artist/%21Distain/924864" } ] } } }