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

  1. CubyCode
  2. Events App Template iOS/Android
Public

21
31
21
31
  • 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
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
        }
      }
    }
{
  "data": {
    "installations": {
      "results": [
        {
          "ACL": null,
          "GCMSenderId": "senderid458",
          "appIdentifier": "events.domain.com.events",
          "appName": "Events",
          "appVersion": "1.0",
          "badge": null,
          "channels": null,
          "createdAt": "2017-03-29T11:10:23.265Z",
          "deviceToken": "devicetoken308",
          "deviceType": "android",
          "id": "dgiwA0KHHw",
          "installationId": "4b6a6690-dc18-4d0e-bcab-b2458a9d4341",
          "localeIdentifier": "de-DE",
          "parseVersion": "1.13.1",
          "pushType": "gcm",
          "timeZone": "Europe/Berlin",
          "updatedAt": "2019-12-21T03:06:30.793Z"
        },
        {
          "ACL": null,
          "GCMSenderId": null,
          "appIdentifier": "leefrw",
          "appName": "Events",
          "appVersion": "1.0.1",
          "badge": 0,
          "channels": [
            {
              "value": "Events"
            }
          ],
          "createdAt": "2017-04-01T22:38:07.353Z",
          "deviceToken": null,
          "deviceType": "ios",
          "id": "QI2JBLr0KH",
          "installationId": "de0a728e-be72-4353-8134-b496dcc88b61",
          "localeIdentifier": "nb-NO",
          "parseVersion": "1.12.0",
          "pushType": null,
          "timeZone": "Europe/Oslo",
          "updatedAt": "2017-04-01T22:38:07.353Z"
        },
        {
          "ACL": null,
          "GCMSenderId": "senderid206",
          "appIdentifier": "events.domain.com.events",
          "appName": "Events",
          "appVersion": "1.0",
          "badge": null,
          "channels": null,
          "createdAt": "2017-04-03T05:20:41.822Z",
          "deviceToken": "devicetoken134",
          "deviceType": "android",
          "id": "GfRSgm8AGE",
          "installationId": "ef6d8992-b369-4dfc-a404-dc286b85fcb8",
          "localeIdentifier": "id-ID",
          "parseVersion": "1.13.1",
          "pushType": "gcm",
          "timeZone": "Asia/Jakarta",
          "updatedAt": "2019-12-21T03:06:27.643Z"
        }
      ]
    }
  }
}