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

  1. CubyCode
  2. AskIt | Questions/Answers App Template
Public

14
15
14
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
18
19
20
21
22
23
24
25
query allUsers {
      users (skip: 0, limit: 3) {
        results {
          ACL
          authData
          avatar {
            url
            name
          }
          createdAt
          email
          emailVerified
          fullName
          hasBlocked {
              ...on Element {
              value
            }
          }
          id
          isReported
          reportMessage
          updatedAt
          username
        }
      }
    }
{
  "data": {
    "users": {
      "results": [
        {
          "ACL": {
            "*": {
              "read": true
            },
            "enoSV7b7GP": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/2eccdb6YvBpQhKV6i7p9nk5dj7ULUzK5XefQWh29/dea5062338ef4a988ecfe15cf31a57a6_female3.jpg",
            "name": "dea5062338ef4a988ecfe15cf31a57a6_female3.jpg"
          },
          "createdAt": "2016-06-29T13:43:28.849Z",
          "email": "[email protected]",
          "emailVerified": null,
          "fullName": "Full Name 741",
          "hasBlocked": null,
          "id": "enoSV7b7GP",
          "isReported": false,
          "reportMessage": null,
          "updatedAt": "2019-12-21T02:38:28.573Z",
          "username": "username751"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "azZkVUpgbG": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/2eccdb6YvBpQhKV6i7p9nk5dj7ULUzK5XefQWh29/c3fce1aab00bf569b8c9b7f6daf59476_male4.jpg",
            "name": "c3fce1aab00bf569b8c9b7f6daf59476_male4.jpg"
          },
          "createdAt": "2016-09-01T12:12:27.440Z",
          "email": "[email protected]",
          "emailVerified": null,
          "fullName": "Full Name 676",
          "hasBlocked": null,
          "id": "azZkVUpgbG",
          "isReported": true,
          "reportMessage": "Offensive user",
          "updatedAt": "2019-12-21T02:38:27.572Z",
          "username": "username685"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "PCL3AuSRUL": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/2eccdb6YvBpQhKV6i7p9nk5dj7ULUzK5XefQWh29/87e58e4d508b2ef9281464a65d4feefa_avatar.jpg",
            "name": "87e58e4d508b2ef9281464a65d4feefa_avatar.jpg"
          },
          "createdAt": "2016-06-29T08:28:21.098Z",
          "email": "[email protected]",
          "emailVerified": null,
          "fullName": "Full Name 486",
          "hasBlocked": null,
          "id": "PCL3AuSRUL",
          "isReported": false,
          "reportMessage": null,
          "updatedAt": "2019-12-21T02:38:25.304Z",
          "username": "username494"
        }
      ]
    }
  }
}