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

  1. CubyCode
  2. Albums | Photo Albums Sharing App Template for Android/iOS
Public

14
16
14
16
  • 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": "senderid2",
          "appIdentifier": "domain.com.albums",
          "appName": "Albums",
          "appVersion": "1.0",
          "badge": 5,
          "channels": null,
          "createdAt": "2018-04-16T09:54:00.121Z",
          "deviceToken": "devicetoken3",
          "deviceType": "android",
          "id": "4D8pT2qc1S",
          "installationId": "c1f2d7d9-3579-4a5e-a21a-e8d8fb051406",
          "localeIdentifier": "en-US",
          "parseVersion": "1.16.0",
          "pushType": "gcm",
          "timeZone": "Europe/Rome",
          "updatedAt": "2019-12-21T03:04:09.232Z",
          "userID": "86q02Cwpof",
          "username": "username2"
        },
        {
          "ACL": null,
          "GCMSenderId": null,
          "appIdentifier": "com.domain.albums",
          "appName": "Albums",
          "appVersion": "1",
          "badge": 0,
          "channels": null,
          "createdAt": "2018-04-16T10:04:28.142Z",
          "deviceToken": "devicetoken27",
          "deviceType": "ios",
          "id": "LtmWVzI3Tx",
          "installationId": "821db305-f9bd-4e4c-a329-d22146480d90",
          "localeIdentifier": "en-IT",
          "parseVersion": "1.14.2",
          "pushType": null,
          "timeZone": "Europe/Rome",
          "updatedAt": "2019-12-21T03:04:09.477Z",
          "userID": "86q02Cwpof",
          "username": "username25"
        },
        {
          "ACL": null,
          "GCMSenderId": null,
          "appIdentifier": "domain.com.albums",
          "appName": "Albums",
          "appVersion": "1.0",
          "badge": null,
          "channels": null,
          "createdAt": "2018-06-28T06:00:01.251Z",
          "deviceToken": "devicetoken52",
          "deviceType": "android",
          "id": "xhvr9gCets",
          "installationId": "a96b160d-582a-4eae-93e6-ce137ef851f5",
          "localeIdentifier": "en-US",
          "parseVersion": "1.16.7",
          "pushType": "gcm",
          "timeZone": "Asia/Qatar",
          "updatedAt": "2019-12-21T03:04:09.708Z",
          "userID": null,
          "username": null
        }
      ]
    }
  }
}