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

  1. Back4App
  2. Instagram Clone
Public

50
55
50
55
  • 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
query allUsers {
      users (skip: 0, limit: 3) {
        results {
          ACL
          authData
          createdAt
          email
          emailVerified
          friends (skip: 0, limit: 3) {
            results {
              id
            }
          }
          id
          updatedAt
          username
        }
      }
    }
{
  "data": {
    "users": {
      "results": [
        {
          "ACL": {
            "*": {
              "read": true
            },
            "mPkCbx25A3": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "createdAt": "2019-08-27T18:40:51.250Z",
          "email": "[email protected]",
          "emailVerified": null,
          "friends": {
            "results": []
          },
          "id": "mPkCbx25A3",
          "updatedAt": "2019-12-21T02:38:42.447Z",
          "username": "username1"
        }
      ]
    }
  }
}