The Database Hub | Back4App
The Database Hub | Back4App
How it works
  • Log In
  • Sign Up

  1. CubyCode
  2. Hey! | Universal Short Messaging App Template for Android/iOS
Public

10
11
10
11
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Installations

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
        }
      ]
    }
  }
}