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 userID username } } }
{ "data": { "installations": { "results": [ { "ACL": null, "GCMSenderId": "senderid8", "appIdentifier": "com.domain.camfun", "appName": "CamFun", "appVersion": "1.0", "badge": null, "channels": null, "createdAt": "2018-04-20T08:40:06.181Z", "deviceToken": "devicetoken1286", "deviceType": "android", "id": "OvkCk6iBA3", "installationId": "70732621-fcc3-4c96-9f68-42a88ffa855b", "localeIdentifier": "en-US", "parseVersion": "1.17.3", "pushType": "gcm", "timeZone": "GMT", "updatedAt": "2019-12-21T03:03:29.154Z", "userID": "fq63rBDrDp", "username": "username13" }, { "ACL": null, "GCMSenderId": null, "appIdentifier": "com.DCL.camfun", "appName": "CamFun", "appVersion": "1", "badge": 0, "channels": null, "createdAt": "2018-04-27T11:08:44.494Z", "deviceToken": "devicetoken2682", "deviceType": "ios", "id": "sRb0V60E6Q", "installationId": "b9cb5a2d-22d8-4ec9-b91c-1f794e99b511", "localeIdentifier": "en-IN", "parseVersion": "1.15.2", "pushType": null, "timeZone": "Asia/Kolkata", "updatedAt": "2019-12-21T03:03:48.464Z", "userID": null, "username": null }, { "ACL": null, "GCMSenderId": null, "appIdentifier": "com.domain.camfun", "appName": "CamFun", "appVersion": "1.0", "badge": null, "channels": null, "createdAt": "2018-05-09T06:15:07.670Z", "deviceToken": "devicetoken865", "deviceType": "android", "id": "Gg0pI3QEvu", "installationId": "9e729aa5-c7e2-4811-b656-4280e35b1212", "localeIdentifier": "en-US", "parseVersion": "1.16.0", "pushType": "gcm", "timeZone": "Asia/Kolkata", "updatedAt": "2019-12-21T03:03:19.202Z", "userID": null, "username": null } ] } } }