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": null, "appIdentifier": "com.domain.shoppy", "appName": "Shoppy", "appVersion": "2", "badge": 0, "channels": null, "createdAt": "2017-03-06T15:58:15.297Z", "deviceToken": "devicetoken44", "deviceType": "ios", "id": "6yDiHU7Ryl", "installationId": "7030322f-a87e-4856-ba13-cdea46ce6149", "localeIdentifier": "en-IT", "parseVersion": "1.14.2", "pushType": null, "timeZone": "Europe/Rome", "updatedAt": "2019-12-21T03:04:01.441Z", "userID": null, "username": null }, { "ACL": null, "GCMSenderId": null, "appIdentifier": "com.mbe.shoppy", "appName": "Shoppy", "appVersion": "2", "badge": 0, "channels": null, "createdAt": "2017-06-05T02:15:30.600Z", "deviceToken": "devicetoken400", "deviceType": "ios", "id": "wrgcwaDJBc", "installationId": "e4dd63de-a230-4b2e-9aad-0f3ff4c21d39", "localeIdentifier": "en-AU", "parseVersion": "1.14.2", "pushType": null, "timeZone": "Australia/Melbourne", "updatedAt": "2019-12-21T03:04:05.910Z", "userID": null, "username": null }, { "ACL": null, "GCMSenderId": null, "appIdentifier": "com.domain.shopp", "appName": "Shoppy", "appVersion": "2", "badge": 0, "channels": null, "createdAt": "2017-05-17T12:52:38.846Z", "deviceToken": "devicetoken210", "deviceType": "ios", "id": "RuxBKOEubh", "installationId": "8c6846e6-9c3f-4550-8527-193b4837a351", "localeIdentifier": "en-CA", "parseVersion": "1.14.2", "pushType": null, "timeZone": "Asia/Riyadh", "updatedAt": "2019-12-21T03:04:03.340Z", "userID": null, "username": null } ] } } }