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

  1. CubyCode
  2. Photofeed | Social Photo Feeds App Template for Android/iOS
Public

14
13
14
13
  • 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
query allUsers {
      users (skip: 0, limit: 3) {
        results {
          ACL
          aboutMe
          authData
          avatar {
            url
            name
          }
          coverImage {
            url
            name
          }
          createdAt
          email
          emailVerified
          fullName
          id
          isReported
          passwordString
          reportMessage
          updatedAt
          username
        }
      }
    }
{
  "data": {
    "users": {
      "results": [
        {
          "ACL": {
            "*": {
              "read": true
            },
            "64qk6N6EdY": {
              "read": true,
              "write": true
            }
          },
          "aboutMe": "This is Sarah Doe, a fashion designer from Seattle",
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/OFUpgaSjqJXOrrxxi6QSKXoCOgNaJGiVAzjWslQJ/93f5cfd2367e73fceeb4e86dd2c85c0a_avatar-2.jpg",
            "name": "93f5cfd2367e73fceeb4e86dd2c85c0a_avatar-2.jpg"
          },
          "coverImage": null,
          "createdAt": "2016-06-14T06:40:28.203Z",
          "email": "[email protected]",
          "emailVerified": null,
          "fullName": "Full Name 5",
          "id": "64qk6N6EdY",
          "isReported": false,
          "passwordString": null,
          "reportMessage": "",
          "updatedAt": "2019-12-21T03:04:22.253Z",
          "username": "username5"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "FIXGpMw0dR": {
              "read": true,
              "write": true
            }
          },
          "aboutMe": "Mobile Apps developer",
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/OFUpgaSjqJXOrrxxi6QSKXoCOgNaJGiVAzjWslQJ/f02ac041f2f6c7852042c6bdc6ced712_image.jpg",
            "name": "f02ac041f2f6c7852042c6bdc6ced712_image.jpg"
          },
          "coverImage": {
            "url": "https://parsefiles.back4app.com/OFUpgaSjqJXOrrxxi6QSKXoCOgNaJGiVAzjWslQJ/1304d0a3108545197db9ba1e65e3ffc4_image.jpg",
            "name": "1304d0a3108545197db9ba1e65e3ffc4_image.jpg"
          },
          "createdAt": "2017-12-12T21:54:22.145Z",
          "email": "[email protected]",
          "emailVerified": null,
          "fullName": "Full Name 22",
          "id": "FIXGpMw0dR",
          "isReported": false,
          "passwordString": null,
          "reportMessage": null,
          "updatedAt": "2019-12-21T03:04:22.706Z",
          "username": "username22"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "TBjEQLrI4r": {
              "read": true,
              "write": true
            }
          },
          "aboutMe": null,
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/OFUpgaSjqJXOrrxxi6QSKXoCOgNaJGiVAzjWslQJ/b2b088bf971bc9c6043c7f917f00c746_avatar.jpg",
            "name": "b2b088bf971bc9c6043c7f917f00c746_avatar.jpg"
          },
          "coverImage": null,
          "createdAt": "2018-07-20T07:46:18.897Z",
          "email": "[email protected]",
          "emailVerified": null,
          "fullName": "Full Name 44",
          "id": "TBjEQLrI4r",
          "isReported": false,
          "passwordString": null,
          "reportMessage": null,
          "updatedAt": "2019-12-21T03:04:23.124Z",
          "username": "username44"
        }
      ]
    }
  }
}