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

  1. CubyCode
  2. Stores Around | Stores Finder App Template
Public

14
11
14
11
  • 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
query allUsers {
      users (skip: 0, limit: 3) {
        results {
          ACL
          authData
          createdAt
          email
          emailVerified
          fullname
          id
          updatedAt
          username
        }
      }
    }
{
  "data": {
    "users": {
      "results": [
        {
          "ACL": {
            "*": {
              "read": true
            },
            "NgOoh45i4H": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "createdAt": "2016-05-04T14:31:02.087Z",
          "email": "[email protected]",
          "emailVerified": null,
          "fullname": "Full Name 7",
          "id": "NgOoh45i4H",
          "updatedAt": "2019-12-21T03:09:53.391Z",
          "username": "username7"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "VBr4bXCeAt": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "createdAt": "2016-04-29T16:01:39.705Z",
          "email": "[email protected]",
          "emailVerified": null,
          "fullname": "Full Name 11",
          "id": "VBr4bXCeAt",
          "updatedAt": "2019-12-21T03:09:53.391Z",
          "username": "username11"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "MMS9YFgIBf": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "createdAt": "2016-08-01T13:30:42.227Z",
          "email": "[email protected]",
          "emailVerified": null,
          "fullname": "Full Name 5",
          "id": "MMS9YFgIBf",
          "updatedAt": "2019-12-21T03:09:53.391Z",
          "username": "username5"
        }
      ]
    }
  }
}