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

  1. Back4App
  2. Complete User Registration
Public

32
51
32
51
  • 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
28
29
30
31
32
33
34
35
query allUsers {
      users (skip: 0, limit: 3) {
        results {
          ACL
          address
          age
          authData
          birthDate
          city
          country
          createdAt
          district
          email
          emailVerified
          gender {
            id
          }
          id
          lastName
          location {
            latitude
            longitude
          }
          name
          phoneNumber
          picture {
            url
            name
          }
          updatedAt
          username
          website
          zipCode
        }
      }
    }
{
  "data": {
    "users": {
      "results": [
        {
          "ACL": {
            "*": {
              "read": true
            },
            "TF66qigVpu": {
              "read": true,
              "write": true
            }
          },
          "address": "Mary Street, 34",
          "age": 39,
          "authData": null,
          "birthDate": "1980-01-01T14:18:06.336Z",
          "city": "Sao Paulo",
          "country": "Brazil",
          "createdAt": "2019-11-21T14:16:19.786Z",
          "district": "Vila Mariana",
          "email": "[email protected]",
          "emailVerified": true,
          "gender": {
            "id": "hJhH3GEd3Q"
          },
          "id": "TF66qigVpu",
          "lastName": "Doe",
          "location": {
            "latitude": 0,
            "longitude": 0
          },
          "name": "John",
          "phoneNumber": "123456789",
          "picture": {
            "url": "https://parsefiles.back4app.com/y9ztD2mBVqW9PNhNxlHme3ph1vSPZevn0WP6UbDZ/13398f5d84244411580459af729e9ada_anon-250.png",
            "name": "13398f5d84244411580459af729e9ada_anon-250.png"
          },
          "updatedAt": "2019-12-21T03:09:50.946Z",
          "username": "username1",
          "website": "http://my.website.com",
          "zipCode": "12345-678"
        }
      ]
    }
  }
}