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

  1. Carbon Code Technology
  2. Classified Native App Template
Public

3
0
3
0
  • 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
query allUsers {
      users (skip: 0, limit: 3) {
        results {
          ACL
          aboutMe
          authData
          avatar {
            url
            name
          }
          createdAt
          email
          emailVerified
          fullName
          hasBlocked {
              ...on Element {
              value
            }
          }
          id
          isReported
          reportMessage
          updatedAt
          userCountry
          userFullSchoolAddress
          userMajor
          userSchool
          userState
          username
          website
        }
      }
    }
{
  "data": {
    "users": {
      "results": [
        {
          "ACL": {
            "*": {
              "read": true
            },
            "vlc36r0UuQ": {
              "read": true,
              "write": true
            }
          },
          "aboutMe": "Traveler and blogger ",
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/aCZVPtVeRnfl88IjvmqqPadYy7MoGSuZGs5Ns4l4/9d34483e78a3b05eab95174488f71edf_image.jpg",
            "name": "9d34483e78a3b05eab95174488f71edf_image.jpg"
          },
          "createdAt": "2019-07-15T11:06:22.492Z",
          "email": "[email protected]",
          "emailVerified": false,
          "fullName": "Full Name 174",
          "hasBlocked": [],
          "id": "vlc36r0UuQ",
          "isReported": false,
          "reportMessage": null,
          "updatedAt": "2020-05-05T14:12:38.604Z",
          "userCountry": null,
          "userFullSchoolAddress": null,
          "userMajor": null,
          "userSchool": null,
          "userState": null,
          "username": "username175",
          "website": ""
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "8P4HPYGh3g": {
              "read": true,
              "write": true
            }
          },
          "aboutMe": "From London with love",
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/aCZVPtVeRnfl88IjvmqqPadYy7MoGSuZGs5Ns4l4/644f2ee30fce18cb00308bbcc9b28a00_elizabeth.jpg",
            "name": "644f2ee30fce18cb00308bbcc9b28a00_elizabeth.jpg"
          },
          "createdAt": "2019-07-15T11:15:01.336Z",
          "email": "[email protected]",
          "emailVerified": true,
          "fullName": "Full Name 22",
          "hasBlocked": [],
          "id": "8P4HPYGh3g",
          "isReported": false,
          "reportMessage": null,
          "updatedAt": "2020-05-05T14:12:38.315Z",
          "userCountry": null,
          "userFullSchoolAddress": null,
          "userMajor": null,
          "userSchool": null,
          "userState": null,
          "username": "username22",
          "website": null
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "aISCLRG01y": {
              "read": true,
              "write": true
            }
          },
          "aboutMe": "",
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/aCZVPtVeRnfl88IjvmqqPadYy7MoGSuZGs5Ns4l4/bc64b113b6855cd0bd0c7cace406e8a6_image.jpg",
            "name": "bc64b113b6855cd0bd0c7cace406e8a6_image.jpg"
          },
          "createdAt": "2019-07-17T08:33:05.045Z",
          "email": "[email protected]",
          "emailVerified": false,
          "fullName": "Full Name 112",
          "hasBlocked": [],
          "id": "aISCLRG01y",
          "isReported": false,
          "reportMessage": null,
          "updatedAt": "2020-05-05T14:12:38.481Z",
          "userCountry": null,
          "userFullSchoolAddress": null,
          "userMajor": null,
          "userSchool": null,
          "userState": null,
          "username": "username113",
          "website": null
        }
      ]
    }
  }
}