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
30
31
32
33
query allInstallations { installations (skip: 0, limit: 3) { results { ACL GCMSenderId appIdentifier appName appVersion badge channels { ...on Element { value } } createdAt deviceToken deviceType fullNameLowercase { ...on Element { value } } id installationId localeIdentifier parseVersion pushType timeZone updatedAt userID username } } }
{ "data": { "installations": { "results": [ { "ACL": null, "GCMSenderId": null, "appIdentifier": "domain.com.hey", "appName": "Hey", "appVersion": "1.0", "badge": null, "channels": null, "createdAt": "2017-02-24T03:04:39.011Z", "deviceToken": "devicetoken90", "deviceType": "android", "fullNameLowercase": null, "id": "NfoctZ7XnG", "installationId": "c783c7bc-901c-4467-a66b-10c6f8074a9f", "localeIdentifier": "id-ID", "parseVersion": "1.13.1", "pushType": "gcm", "timeZone": "Asia/Jayapura", "updatedAt": "2019-12-21T03:06:05.840Z", "userID": null, "username": null }, { "ACL": null, "GCMSenderId": null, "appIdentifier": "domain.com.hey", "appName": "Hey", "appVersion": "1.0", "badge": null, "channels": null, "createdAt": "2017-02-09T01:32:58.561Z", "deviceToken": "devicetoken50", "deviceType": "android", "fullNameLowercase": null, "id": "DjZhgkQam5", "installationId": "6f7ce987-ccbc-44bb-bcb0-145307b6f444", "localeIdentifier": "ko-KR", "parseVersion": "1.13.1", "pushType": "gcm", "timeZone": "Asia/Seoul", "updatedAt": "2019-12-21T03:06:03.830Z", "userID": null, "username": null }, { "ACL": null, "GCMSenderId": null, "appIdentifier": "com.getlikeable.likeable--", "appName": "Hey", "appVersion": "1", "badge": 0, "channels": null, "createdAt": "2017-02-12T17:36:06.887Z", "deviceToken": "devicetoken128", "deviceType": "ios", "fullNameLowercase": null, "id": "YfWTf23Dua", "installationId": "fb6cc113-b7ec-4514-8a5a-26201b5e3f1e", "localeIdentifier": "en-RO", "parseVersion": "1.14.2", "pushType": null, "timeZone": "Europe/Bucharest", "updatedAt": "2019-12-21T03:06:06.225Z", "userID": null, "username": null } ] } } }