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

  1. CubyCode
  2. BuzzIt | Messaging app template for Android/iOS
Public

11
15
11
15
  • 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
query allUsers {
      users (skip: 0, limit: 3) {
        results {
          ACL
          authData
          avatar {
            url
            name
          }
          createdAt
          email
          emailVerified
          id
          updatedAt
          username
        }
      }
    }
{
  "data": {
    "users": {
      "results": [
        {
          "ACL": {
            "*": {
              "read": true
            },
            "HbbwdgUyo0": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/twJBEkUIWLe57X47inVHvsMKYSjCaSqW0Nb80HE5/224c1d30dc94ec8838a2b75958d1da22_avatar.jpg",
            "name": "224c1d30dc94ec8838a2b75958d1da22_avatar.jpg"
          },
          "createdAt": "2018-06-13T17:49:42.294Z",
          "email": null,
          "emailVerified": null,
          "id": "HbbwdgUyo0",
          "updatedAt": "2019-12-21T03:08:45.038Z",
          "username": "username20"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "NCBvWAkTDp": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "avatar": null,
          "createdAt": "2019-01-07T14:33:44.864Z",
          "email": null,
          "emailVerified": null,
          "id": "NCBvWAkTDp",
          "updatedAt": "2019-12-21T03:08:45.410Z",
          "username": "username25"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "BAZFrQa3nn": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/twJBEkUIWLe57X47inVHvsMKYSjCaSqW0Nb80HE5/4239d15cf8d4819af9c686185823dcf7_avatar.jpg",
            "name": "4239d15cf8d4819af9c686185823dcf7_avatar.jpg"
          },
          "createdAt": "2019-03-18T14:00:49.908Z",
          "email": null,
          "emailVerified": null,
          "id": "BAZFrQa3nn",
          "updatedAt": "2019-12-21T03:08:45.038Z",
          "username": "username9"
        }
      ]
    }
  }
}