This GraphQL query fetches All Categories
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
query allCategories { categories (skip: 0, limit: 3) { results { ACL createdAt id image { url name } name updatedAt } } }
{ "data": { "categories": { "results": [ { "ACL": null, "createdAt": "2019-11-23T23:19:43.039Z", "id": "CiSMgOSYmb", "image": { "url": "https://parsefiles.back4app.com/jUYjzvmxdlBXJ0Jgu6KyRJOu9HTiBrSTzwpixL8v/cfb20c82c9a7b65d0599d2e7fefcebba_ifc_logo_share.png", "name": "cfb20c82c9a7b65d0599d2e7fefcebba_ifc_logo_share.png" }, "name": "Cinema", "updatedAt": "2019-12-12T23:11:36.027Z" }, { "ACL": null, "createdAt": "2019-11-23T23:28:29.605Z", "id": "wRSPmKnVFT", "image": { "url": "https://parsefiles.back4app.com/jUYjzvmxdlBXJ0Jgu6KyRJOu9HTiBrSTzwpixL8v/cc1d0278f46c9f2653b4e8e5d70f2719_gvlfvr5pxfaztbv5rs7t_400x400.png", "name": "cc1d0278f46c9f2653b4e8e5d70f2719_gvlfvr5pxfaztbv5rs7t_400x400.png" }, "name": "Science", "updatedAt": "2019-12-12T23:13:42.694Z" }, { "ACL": null, "createdAt": "2019-11-23T16:58:16.381Z", "id": "2XXaIb0RYd", "image": { "url": "https://parsefiles.back4app.com/jUYjzvmxdlBXJ0Jgu6KyRJOu9HTiBrSTzwpixL8v/2183b1fe728cfd3a87532343737c1b52_1200px-Fox_News_Channel_logo.svg.png", "name": "2183b1fe728cfd3a87532343737c1b52_1200px-Fox_News_Channel_logo.svg.png" }, "name": "News TV", "updatedAt": "2019-12-12T23:09:44.702Z" } ] } } }