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

  1. CubyCode
  2. YouNews | News App Template for Android/iOS
Public

14
17
14
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
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": null,
          "appIdentifier": "com.domain.younews",
          "appName": "YouNews",
          "appVersion": "1",
          "badge": 1,
          "channels": null,
          "createdAt": "2017-07-12T08:48:32.573Z",
          "deviceToken": "devicetoken98",
          "deviceType": "ios",
          "id": "EurMF0HmwN",
          "installationId": "8b691359-4c55-47de-bf89-13af9a3f9c85",
          "localeIdentifier": "en-IT",
          "parseVersion": "1.14.4",
          "pushType": null,
          "timeZone": "Europe/Rome",
          "updatedAt": "2019-12-21T02:42:42.303Z"
        },
        {
          "ACL": null,
          "GCMSenderId": "senderid96",
          "appIdentifier": "com.domain.younews",
          "appName": "YouNews",
          "appVersion": "1.0",
          "badge": null,
          "channels": null,
          "createdAt": "2017-07-19T06:18:44.567Z",
          "deviceToken": "devicetoken99",
          "deviceType": "android",
          "id": "EzUL1Pv5Bz",
          "installationId": "a89f3918-a52b-4277-8935-8bf555a84867",
          "localeIdentifier": "tr-TR",
          "parseVersion": "1.15.8",
          "pushType": "gcm",
          "timeZone": "Europe/Istanbul",
          "updatedAt": "2019-12-21T02:42:42.303Z"
        },
        {
          "ACL": null,
          "GCMSenderId": null,
          "appIdentifier": "com.domain.younews",
          "appName": "YouNews",
          "appVersion": "1.0",
          "badge": null,
          "channels": null,
          "createdAt": "2017-07-19T08:30:30.274Z",
          "deviceToken": "devicetoken73",
          "deviceType": "android",
          "id": "BKiMtrApHZ",
          "installationId": "e02999e9-7303-41fc-8c6b-26d8c4d63f32",
          "localeIdentifier": "ko-KR",
          "parseVersion": "1.15.8",
          "pushType": "gcm",
          "timeZone": "Asia/Seoul",
          "updatedAt": "2019-12-21T02:42:42.048Z"
        }
      ]
    }
  }
}