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

  1. CubyCode
  2. iResidence | Real State Android App Template
Public

20
24
20
24
  • 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
query allUsers {
      users (skip: 0, limit: 3) {
        results {
          ACL
          authData
          avatar {
            url
            name
          }
          createdAt
          email
          emailVerified
          facebook
          fullName
          id
          mobile
          skype
          tel
          twitter
          updatedAt
          username
        }
      }
    }
{
  "data": {
    "users": {
      "results": [
        {
          "ACL": null,
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/twM9Ra8U3jiSolHR3ihsV9LMHL2vTsTYOEZdVIS2/04007fed321259a44e990f45d91426c3_male1.jpg",
            "name": "04007fed321259a44e990f45d91426c3_male1.jpg"
          },
          "createdAt": "2015-09-01T09:10:15.736Z",
          "email": null,
          "emailVerified": null,
          "facebook": null,
          "fullName": "Full Name 30",
          "id": "dZktMMo3PY",
          "mobile": "126457984",
          "skype": "markdoe",
          "tel": "45124598",
          "twitter": null,
          "updatedAt": "2019-12-21T03:08:49.264Z",
          "username": "username29"
        },
        {
          "ACL": null,
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/twM9Ra8U3jiSolHR3ihsV9LMHL2vTsTYOEZdVIS2/483be4490b3d3e1c745840f2306c0038_female2.jpg",
            "name": "483be4490b3d3e1c745840f2306c0038_female2.jpg"
          },
          "createdAt": "2015-09-01T09:06:44.822Z",
          "email": null,
          "emailVerified": null,
          "facebook": "http://facebook.com/fvimagination",
          "fullName": "Full Name 34",
          "id": "jUcR13ilg3",
          "mobile": "987654321",
          "skype": "sarahdoe",
          "tel": "123456789",
          "twitter": null,
          "updatedAt": "2019-12-21T03:08:49.264Z",
          "username": "username34"
        },
        {
          "ACL": null,
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/twM9Ra8U3jiSolHR3ihsV9LMHL2vTsTYOEZdVIS2/0fdb6fe94b2cbb1aff5402a9ba22a575_male2.jpg",
            "name": "0fdb6fe94b2cbb1aff5402a9ba22a575_male2.jpg"
          },
          "createdAt": "2015-08-28T14:39:53.631Z",
          "email": null,
          "emailVerified": null,
          "facebook": "http://facebook.com",
          "fullName": "Full Name 42",
          "id": "v6FK5C6xI6",
          "mobile": "8885236589",
          "skype": "johndoe",
          "tel": "1236545698",
          "twitter": "https://twitter.com/johndoe",
          "updatedAt": "2019-12-21T03:08:49.508Z",
          "username": "username42"
        }
      ]
    }
  }
}