This GraphQL query fetches All Installations
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
query allInstallations { installations (skip: 0, limit: 3) { results { ACL GCMSenderId appIdentifier appName appVersion badge channels { ...on Element { value } } createdAt deviceToken deviceType id installationId localeIdentifier parseVersion pushType timeZone updatedAt user { id } } } }
{ "data": { "installations": { "results": [ { "ACL": null, "GCMSenderId": "senderid1", "appIdentifier": "red.simpleapp.numbster", "appName": "Numbster", "appVersion": "1.0", "badge": null, "channels": [ { "value": "global" } ], "createdAt": "2019-12-12T11:57:11.493Z", "deviceToken": null, "deviceType": "android", "id": "HNuqmaxWjE", "installationId": "ef5af1a3-d47e-48ac-91d7-446aa7753aaa", "localeIdentifier": "ru-RU", "parseVersion": "1.17.3", "pushType": null, "timeZone": "Europe/Moscow", "updatedAt": "2019-12-21T03:05:02.297Z", "user": { "id": "yLiNinXjVT" } }, { "ACL": null, "GCMSenderId": "senderid2", "appIdentifier": "red.simpleapp.numbster", "appName": "Numbster", "appVersion": "1.0", "badge": null, "channels": [ { "value": "global" } ], "createdAt": "2019-12-11T14:41:14.767Z", "deviceToken": null, "deviceType": "android", "id": "IXKYwMoG8K", "installationId": "1c9187ed-d783-4f37-ab93-790c9ecd726b", "localeIdentifier": "ru-RU", "parseVersion": "1.17.3", "pushType": null, "timeZone": "Europe/Moscow", "updatedAt": "2019-12-21T03:05:02.297Z", "user": { "id": "yLiNinXjVT" } } ] } } }