This GraphQL query fetches All Galleries
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query allGalleries { galleries (skip: 0, limit: 3) { results { ACL createdAt id image { url name } title updatedAt } } }
{ "data": { "galleries": { "results": [ { "ACL": null, "createdAt": "2019-04-26T04:19:02.265Z", "id": "uL2LDWGAjM", "image": { "url": "https://parsefiles.back4app.com/xSuYw2mNDXQF9j9q9fwFQeTTiX8vrseSK0WcfSMA/47381696a583ef1a4bb3588f1c0dab20_image.jpg", "name": "47381696a583ef1a4bb3588f1c0dab20_image.jpg" }, "title": "EDIT ME!", "updatedAt": "2019-04-26T04:19:02.265Z" }, { "ACL": null, "createdAt": "2019-04-26T12:08:37.693Z", "id": "c7WP8Vb3rt", "image": { "url": "https://parsefiles.back4app.com/xSuYw2mNDXQF9j9q9fwFQeTTiX8vrseSK0WcfSMA/c3b0f174c9230a2e2cffab7c62dd9acd_image.jpg", "name": "c3b0f174c9230a2e2cffab7c62dd9acd_image.jpg" }, "title": "EDIT ME!", "updatedAt": "2019-04-26T12:08:37.693Z" } ] } } }