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

  1. CubyCode
  2. Storyteller | Video Sharing App Template for Android/iOS
Public

18
23
18
23
  • 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": "B3KHUNRAMT.Bethie-r",
          "appName": "Storyteller",
          "appVersion": "1",
          "badge": 2,
          "channels": null,
          "createdAt": "2016-11-13T20:36:00.902Z",
          "deviceToken": "devicetoken472",
          "deviceType": "ios",
          "id": "yPC0ZTZDOO",
          "installationId": "56f189c5-6391-42fa-af46-19849a131457",
          "localeIdentifier": "en-US",
          "parseVersion": "1.14.2",
          "pushType": null,
          "timeZone": "America/Los_Angeles",
          "updatedAt": "2019-12-21T03:04:59.806Z",
          "userID": "ja6Hd2saYB",
          "username": "username468"
        },
        {
          "ACL": null,
          "GCMSenderId": null,
          "appIdentifier": "com.mydomain.storyteller",
          "appName": "Storyteller",
          "appVersion": "1",
          "badge": 0,
          "channels": null,
          "createdAt": "2016-10-13T04:01:26.917Z",
          "deviceToken": null,
          "deviceType": "ios",
          "id": "OcPf4nztRD",
          "installationId": "e8093ff7-1992-4e52-b296-4fd6e449e167",
          "localeIdentifier": "en-US",
          "parseVersion": "1.14.2",
          "pushType": null,
          "timeZone": "America/Chicago",
          "updatedAt": "2019-12-21T03:04:55.466Z",
          "userID": "O33Je1AG5p",
          "username": "username185"
        },
        {
          "ACL": null,
          "GCMSenderId": null,
          "appIdentifier": "com.mashlink.mlios",
          "appName": "Mashlink",
          "appVersion": "1",
          "badge": 0,
          "channels": null,
          "createdAt": "2016-11-25T18:07:27.625Z",
          "deviceToken": null,
          "deviceType": "ios",
          "id": "g6QmTv30q4",
          "installationId": "7b45d09d-c4ef-4339-b826-91d6517796f5",
          "localeIdentifier": "en-US",
          "parseVersion": "1.14.2",
          "pushType": null,
          "timeZone": "America/New_York",
          "updatedAt": "2019-12-21T03:04:57.299Z",
          "userID": "epq6poTZIR",
          "username": "username322"
        }
      ]
    }
  }
}