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

  1. SIMPLEAPP
  2. App Doação de Sangue para Android
Public

11
10
11
10
  • 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.appteve.Blood",
          "appName": "Blood",
          "appVersion": "1",
          "badge": 0,
          "channels": null,
          "createdAt": "2018-01-31T14:40:13.461Z",
          "deviceToken": null,
          "deviceType": "ios",
          "id": "XZkqtpFBIW",
          "installationId": "0607a92b-7033-4369-9be9-8c0ab1020a59",
          "localeIdentifier": "en-US",
          "parseVersion": "1.16.0",
          "pushType": null,
          "timeZone": "GMT",
          "updatedAt": "2018-01-31T14:40:13.461Z"
        },
        {
          "ACL": null,
          "GCMSenderId": null,
          "appIdentifier": "com.appteve.Blood",
          "appName": "Blood",
          "appVersion": "1",
          "badge": 0,
          "channels": null,
          "createdAt": "2018-02-06T15:34:12.710Z",
          "deviceToken": null,
          "deviceType": "ios",
          "id": "0POjMcNZTi",
          "installationId": "892984be-ee43-4173-8af5-8fa09859bf7a",
          "localeIdentifier": "en-RU",
          "parseVersion": "1.16.0",
          "pushType": null,
          "timeZone": "Europe/Moscow",
          "updatedAt": "2018-02-06T15:34:12.710Z"
        },
        {
          "ACL": null,
          "GCMSenderId": null,
          "appIdentifier": "com.appteve.Blood",
          "appName": "Blood",
          "appVersion": "1",
          "badge": 0,
          "channels": null,
          "createdAt": "2018-01-31T14:42:23.338Z",
          "deviceToken": null,
          "deviceType": "ios",
          "id": "k5KlrfbDpN",
          "installationId": "0a149285-82d9-4f4e-b0f4-ab2dd5e29031",
          "localeIdentifier": "en-US",
          "parseVersion": "1.16.0",
          "pushType": null,
          "timeZone": "Europe/Moscow",
          "updatedAt": "2018-01-31T14:42:23.338Z"
        }
      ]
    }
  }
}