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

  1. OMG Lancer
  2. Aplicativo de consulta médica e farmácia (Android) | Médico e paciente Ambos os aplicativos
Public

11
13
11
13
  • 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": "senderid3",
          "appIdentifier": "hospital.doctors",
          "appName": "Hospital Doctors",
          "appVersion": "1.0",
          "badge": null,
          "channels": null,
          "createdAt": "2019-11-29T17:31:14.395Z",
          "deviceToken": "devicetoken3",
          "deviceType": "android",
          "id": "cz7KbMypW2",
          "installationId": "795fa63c-bc0f-4097-9daa-9282164c5085",
          "localeIdentifier": "en-GB",
          "parseVersion": null,
          "pushType": null,
          "timeZone": "Asia/Karachi",
          "updatedAt": "2020-02-28T14:20:59.237Z",
          "userID": "1UOmLt4WGr",
          "username": "username3"
        },
        {
          "ACL": null,
          "GCMSenderId": "senderid5",
          "appIdentifier": "hospital.app",
          "appName": "Hospital App",
          "appVersion": "1.0",
          "badge": null,
          "channels": null,
          "createdAt": "2019-11-29T17:43:21.180Z",
          "deviceToken": "devicetoken5",
          "deviceType": "android",
          "id": "rRvoxwHwM7",
          "installationId": "e58d15d9-18ad-4f39-9eb2-35e2086fadfd",
          "localeIdentifier": "en-GB",
          "parseVersion": null,
          "pushType": null,
          "timeZone": "Asia/Karachi",
          "updatedAt": "2020-02-28T14:20:59.237Z",
          "userID": "TKATnQla0D",
          "username": "username5"
        },
        {
          "ACL": null,
          "GCMSenderId": "senderid2",
          "appIdentifier": "hospital.app",
          "appName": "Hospital App",
          "appVersion": "1.0",
          "badge": null,
          "channels": null,
          "createdAt": "2019-11-29T17:36:02.224Z",
          "deviceToken": "devicetoken2",
          "deviceType": "android",
          "id": "GAQrsSwuLG",
          "installationId": "0072c062-0691-435f-9649-ebfc749f986f",
          "localeIdentifier": "en-US",
          "parseVersion": null,
          "pushType": null,
          "timeZone": "Asia/Karachi",
          "updatedAt": "2020-02-28T14:20:59.237Z",
          "userID": "TKATnQla0D",
          "username": "username2"
        }
      ]
    }
  }
}