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

  1. CubyCode
  2. Wally | Wallpapers 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
query allUsers {
      users (skip: 0, limit: 3) {
        results {
          ACL
          authData
          createdAt
          email
          emailVerified
          id
          updatedAt
          username
        }
      }
    }
{
  "data": {
    "users": {
      "results": [
        {
          "ACL": {
            "*": {
              "read": true
            },
            "sWitzpQbr6": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "createdAt": "2017-07-17T12:32:23.070Z",
          "email": null,
          "emailVerified": null,
          "id": "sWitzpQbr6",
          "updatedAt": "2019-12-21T03:08:43.597Z",
          "username": "username10"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "wt2Z2iGPH7": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "createdAt": "2019-08-21T06:17:55.519Z",
          "email": null,
          "emailVerified": null,
          "id": "wt2Z2iGPH7",
          "updatedAt": "2019-12-21T03:08:43.597Z",
          "username": "username11"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "A91Lv0N0Ho": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "createdAt": "2019-09-04T11:10:45.975Z",
          "email": null,
          "emailVerified": null,
          "id": "A91Lv0N0Ho",
          "updatedAt": "2019-12-21T03:08:43.597Z",
          "username": "username2"
        }
      ]
    }
  }
}