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

  1. SIMPLEAPP
  2. StreamFy | Live streaming tv for Android
Public

14
17
14
17
  • 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
query allUsers {
      users (skip: 0, limit: 3) {
        results {
          ACL
          authData
          createdAt
          email
          emailVerified
          id
          installation {
            id
          }
          nickname
          photo {
            url
            name
          }
          updatedAt
          username
        }
      }
    }
{
  "data": {
    "users": {
      "results": [
        {
          "ACL": {
            "*": {
              "read": true
            },
            "B0CzHbqfs0": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "createdAt": "2019-11-23T17:15:35.624Z",
          "email": "[email protected]",
          "emailVerified": null,
          "id": "B0CzHbqfs0",
          "installation": {
            "id": "VX3lfotG5H"
          },
          "nickname": "Morgan",
          "photo": {
            "url": "https://parsefiles.back4app.com/jUYjzvmxdlBXJ0Jgu6KyRJOu9HTiBrSTzwpixL8v/58418af7cf61c5806173d131387e8051_userpicture.png",
            "name": "58418af7cf61c5806173d131387e8051_userpicture.png"
          },
          "updatedAt": "2019-12-21T03:07:13.128Z",
          "username": "username1"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "VT13F7udMi": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "createdAt": "2019-12-02T19:20:06.072Z",
          "email": "[email protected]",
          "emailVerified": null,
          "id": "VT13F7udMi",
          "installation": null,
          "nickname": "8",
          "photo": {
            "url": "https://parsefiles.back4app.com/jUYjzvmxdlBXJ0Jgu6KyRJOu9HTiBrSTzwpixL8v/1038ca4b02457609ddb2f22fc5d5af6b_userpicture.png",
            "name": "1038ca4b02457609ddb2f22fc5d5af6b_userpicture.png"
          },
          "updatedAt": "2019-12-21T03:07:13.129Z",
          "username": "username5"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "UF6AIrSXYZ": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "createdAt": "2019-12-09T06:07:52.347Z",
          "email": "[email protected]",
          "emailVerified": null,
          "id": "UF6AIrSXYZ",
          "installation": null,
          "nickname": "",
          "photo": {
            "url": "https://parsefiles.back4app.com/jUYjzvmxdlBXJ0Jgu6KyRJOu9HTiBrSTzwpixL8v/b7f2a31fa4821efe73038fba24b27f4a_userpicture.png",
            "name": "b7f2a31fa4821efe73038fba24b27f4a_userpicture.png"
          },
          "updatedAt": "2019-12-21T03:07:13.129Z",
          "username": "username4"
        }
      ]
    }
  }
}