This GraphQL query fetches All Regions
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
query allRegions { regions (skip: 0, limit: 3) { results { ACL States (skip: 0, limit: 3) { results { id } } createdAt id name updatedAt } } }
{ "data": { "regions": { "results": [ { "ACL": null, "States": { "results": [ { "id": "0rMNj9m3wF" }, { "id": "A0Y1TfBNfL" }, { "id": "F5X764CJtI" } ] }, "createdAt": "2019-12-19T14:32:38.130Z", "id": "gCicYHkaoQ", "name": "Northeast", "updatedAt": "2019-12-19T14:38:48.147Z" }, { "ACL": null, "States": { "results": [ { "id": "0VZmSkdlu2" }, { "id": "4QlUGZjVkm" }, { "id": "5Y4mw952ar" } ] }, "createdAt": "2019-12-19T14:32:45.816Z", "id": "ZgtSlufYY6", "name": "Midwest", "updatedAt": "2019-12-19T14:38:48.711Z" }, { "ACL": null, "States": { "results": [ { "id": "0w9j40Cjb9" }, { "id": "4bZYw85dPD" }, { "id": "Bz2SEsNL7S" } ] }, "createdAt": "2019-12-19T14:32:54.107Z", "id": "054mx0N7yw", "name": "South", "updatedAt": "2019-12-19T14:38:49.518Z" } ] } } }