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 userID username } } }
{ "data": { "installations": { "results": [ { "ACL": null, "GCMSenderId": "senderid280", "appIdentifier": "domain.com.recipes", "appName": "Recipes", "appVersion": "1.0", "badge": null, "channels": null, "createdAt": "2017-05-03T12:47:50.868Z", "deviceToken": "devicetoken882", "deviceType": "android", "id": "m2gZjA3LAD", "installationId": "039a87d3-7cff-40cc-b491-6af9102f1fee", "localeIdentifier": "en-US", "parseVersion": "1.15.6", "pushType": "gcm", "timeZone": "Europe/Rome", "updatedAt": "2019-12-21T03:04:46.529Z", "user": null, "userID": "4ekzG4ohXL", "username": "username291" }, { "ACL": null, "GCMSenderId": "senderid155", "appIdentifier": "domain.com.recipes", "appName": "Recipes", "appVersion": "1.0", "badge": null, "channels": null, "createdAt": "2017-05-03T08:33:35.724Z", "deviceToken": "devicetoken520", "deviceType": "android", "id": "SPZOo9I9Ok", "installationId": "c4c730e9-0f4c-41bf-a165-b244ae556439", "localeIdentifier": "en-US", "parseVersion": "1.15.6", "pushType": "gcm", "timeZone": "Europe/Rome", "updatedAt": "2019-12-21T03:04:41.524Z", "user": null, "userID": "HMRMqiVsYV", "username": "username160" }, { "ACL": null, "GCMSenderId": null, "appIdentifier": "com.domain.Boma", "appName": "Recipes", "appVersion": "1", "badge": 0, "channels": null, "createdAt": "2017-02-01T15:57:02.453Z", "deviceToken": "devicetoken812", "deviceType": "ios", "id": "iKB71uHPRX", "installationId": "8e7bd750-63bd-4726-88d6-c6c279a93770", "localeIdentifier": "en-GB", "parseVersion": "1.14.2", "pushType": null, "timeZone": "Asia/Muscat", "updatedAt": "2019-12-21T03:04:45.168Z", "user": null, "userID": null, "username": null } ] } } }