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 Users

This GraphQL query fetches All Users


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
query allUsers {
      users (skip: 0, limit: 3) {
        results {
          ACL
          age
          authData
          blood
          createdAt
          email
          emailVerified
          firstname
          full
          id
          lastname
          phone
          photo {
            url
            name
          }
          position {
            latitude
            longitude
          }
          updatedAt
          username
        }
      }
    }
{
  "data": {
    "users": {
      "results": [
        {
          "ACL": {
            "*": {
              "read": true
            },
            "i7XBTsdtnA": {
              "read": true,
              "write": true
            }
          },
          "age": 18,
          "authData": null,
          "blood": 5,
          "createdAt": "2018-03-16T05:27:36.720Z",
          "email": null,
          "emailVerified": null,
          "firstname": "abdalrahman",
          "full": 0,
          "id": "i7XBTsdtnA",
          "lastname": "molood",
          "phone": "",
          "photo": {
            "url": "https://parsefiles.back4app.com/rsHPGmFmONi8dAiwWip0pDcerm7n5rqz2X8XDONh/8bc4d8dd2c00291aff009ab196fc72c8_userpicture.png",
            "name": "8bc4d8dd2c00291aff009ab196fc72c8_userpicture.png"
          },
          "position": {
            "latitude": 22.2922671,
            "longitude": 70.7994226
          },
          "updatedAt": "2020-02-28T13:07:18.858Z",
          "username": "username186"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "rhKKGfqRlI": {
              "read": true,
              "write": true
            }
          },
          "age": 41,
          "authData": null,
          "blood": 0,
          "createdAt": "2018-02-06T15:51:31.245Z",
          "email": null,
          "emailVerified": null,
          "firstname": "Tomas ",
          "full": 1,
          "id": "rhKKGfqRlI",
          "lastname": "Morgan",
          "phone": null,
          "photo": {
            "url": "https://parsefiles.back4app.com/rsHPGmFmONi8dAiwWip0pDcerm7n5rqz2X8XDONh/266f51d466f938b0888910dde676ecd1_file.bin",
            "name": "266f51d466f938b0888910dde676ecd1_file.bin"
          },
          "position": {
            "latitude": 52.586707221514715,
            "longitude": 39.61312274793733
          },
          "updatedAt": "2020-02-28T13:07:18.893Z",
          "username": "username231"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "2ksN2OBXDF": {
              "read": true,
              "write": true
            }
          },
          "age": 18,
          "authData": null,
          "blood": 0,
          "createdAt": "2018-03-12T00:30:13.082Z",
          "email": null,
          "emailVerified": null,
          "firstname": "",
          "full": 0,
          "id": "2ksN2OBXDF",
          "lastname": "",
          "phone": null,
          "photo": {
            "url": "https://parsefiles.back4app.com/rsHPGmFmONi8dAiwWip0pDcerm7n5rqz2X8XDONh/b56a86d7e4049e84305adb5208b33a77_userpicture.png",
            "name": "b56a86d7e4049e84305adb5208b33a77_userpicture.png"
          },
          "position": {
            "latitude": 23.7911295,
            "longitude": 90.3854216
          },
          "updatedAt": "2020-02-28T13:07:18.286Z",
          "username": "username14"
        }
      ]
    }
  }
}