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
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 userID } } }
{ "data": { "installations": { "results": [ { "ACL": null, "GCMSenderId": "senderid375", "appIdentifier": "iresidence.domain.com.iresidence", "appName": "iResidence", "appVersion": "1.0", "badge": null, "channels": null, "createdAt": "2017-04-06T05:37:54.265Z", "deviceToken": "devicetoken478", "deviceType": "android", "id": "kxrOgllFuB", "installationId": "a468f2e4-0fde-4cc9-9772-ed33bfecc148", "localeIdentifier": "en-US", "parseVersion": "1.15.8", "pushType": "gcm", "timeZone": "Asia/Shanghai", "updatedAt": "2019-12-21T03:08:55.709Z", "user": null, "userID": null }, { "ACL": null, "GCMSenderId": "senderid57", "appIdentifier": "iresidence.domain.com.iresidence", "appName": "iResidence", "appVersion": "1.0", "badge": null, "channels": null, "createdAt": "2017-04-09T09:34:58.818Z", "deviceToken": "devicetoken63", "deviceType": "android", "id": "5XuApMSotm", "installationId": "52b755b1-abc4-481b-a63f-a41e7ee482a3", "localeIdentifier": "zh-CN", "parseVersion": "1.13.1", "pushType": "gcm", "timeZone": "Asia/Kuala_Lumpur", "updatedAt": "2019-12-21T03:08:51.358Z", "user": null, "userID": null }, { "ACL": null, "GCMSenderId": "senderid217", "appIdentifier": "iresidence.domain.com.iresidence", "appName": "iResidence", "appVersion": "1.0", "badge": null, "channels": null, "createdAt": "2017-04-24T14:01:13.114Z", "deviceToken": "devicetoken284", "deviceType": "android", "id": "PNTUdsKEW6", "installationId": "f695dee4-4048-4dfc-afbd-c8ddd4a9c1a2", "localeIdentifier": "en-GB", "parseVersion": "1.15.1", "pushType": "gcm", "timeZone": "America/Sao_Paulo", "updatedAt": "2019-12-21T03:08:53.888Z", "user": null, "userID": null } ] } } }