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

  1. CubyCode
  2. Chatty | Public Chats App Template for iOS
Public

15
17
15
17
  • 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
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.chatty",
          "appName": "Chatty",
          "appVersion": "1",
          "badge": 0,
          "channels": null,
          "createdAt": "2017-10-03T03:42:10.818Z",
          "deviceToken": null,
          "deviceType": "ios",
          "id": "iL4gIahsur",
          "installationId": "08ddd046-ecb2-43fb-afa1-ad99c64fb720",
          "localeIdentifier": "en-US",
          "parseVersion": "1.14.2",
          "pushType": null,
          "timeZone": "America/New_York",
          "updatedAt": "2019-12-21T03:05:52.818Z",
          "userID": "MeRZ8pyXTN",
          "username": "username44"
        },
        {
          "ACL": null,
          "GCMSenderId": null,
          "appIdentifier": "com.brownmedev.chatty",
          "appName": "Chatty",
          "appVersion": "1",
          "badge": 0,
          "channels": null,
          "createdAt": "2017-01-26T22:23:18.034Z",
          "deviceToken": "devicetoken21",
          "deviceType": "ios",
          "id": "oNLnyBAV18",
          "installationId": "094aec5e-b41b-4f8f-9fee-05aea4dd43a3",
          "localeIdentifier": "en-US",
          "parseVersion": "1.14.2",
          "pushType": null,
          "timeZone": "America/Los_Angeles",
          "updatedAt": "2019-12-21T03:05:52.660Z",
          "userID": null,
          "username": null
        },
        {
          "ACL": null,
          "GCMSenderId": null,
          "appIdentifier": "com.domain.chatty",
          "appName": "Chatty",
          "appVersion": "1",
          "badge": 31,
          "channels": null,
          "createdAt": "2017-01-25T13:56:50.862Z",
          "deviceToken": "devicetoken4",
          "deviceType": "ios",
          "id": "AzjHQyBAXr",
          "installationId": "934f4887-c89c-4359-b0b9-5b1de9c5d8b6",
          "localeIdentifier": "it-IT",
          "parseVersion": "1.14.2",
          "pushType": null,
          "timeZone": "Europe/Rome",
          "updatedAt": "2019-12-21T03:05:52.323Z",
          "userID": "vcpFDA1umt",
          "username": "username11"
        }
      ]
    }
  }
}