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

  1. CubyCode
  2. Gems | Android/iOS Universal Geolocation Hunting Game Template
Public

10
11
10
11
  • 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
          currentLocation {
            latitude
            longitude
          }
          email
          emailVerified
          gemsCollected
          id
          points
          updatedAt
          username
        }
      }
    }
{
  "data": {
    "users": {
      "results": [
        {
          "ACL": {
            "*": {
              "read": true
            },
            "agR7d1yGNN": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/UiZw9hWi7VWoFFaZElxJ7dxfyjRgYnXC4pl6vHlv/a2871ddc70fa3b1fb875c409cc583bf8_avatar.jpg",
            "name": "a2871ddc70fa3b1fb875c409cc583bf8_avatar.jpg"
          },
          "createdAt": "2017-05-23T06:13:33.442Z",
          "currentLocation": {
            "latitude": 43.9768078159692,
            "longitude": 12.48765205765433
          },
          "email": null,
          "emailVerified": null,
          "gemsCollected": 13,
          "id": "agR7d1yGNN",
          "points": 530,
          "updatedAt": "2019-12-21T03:05:07.569Z",
          "username": "username27"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "zMWyh7U1LC": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/UiZw9hWi7VWoFFaZElxJ7dxfyjRgYnXC4pl6vHlv/be4c4b5e7f9570c4c392b763e219ca3f_avatar.jpg",
            "name": "be4c4b5e7f9570c4c392b763e219ca3f_avatar.jpg"
          },
          "createdAt": "2018-10-23T15:57:13.952Z",
          "currentLocation": {
            "latitude": 41.64932536,
            "longitude": -0.88105526
          },
          "email": null,
          "emailVerified": null,
          "gemsCollected": 0,
          "id": "zMWyh7U1LC",
          "points": 0,
          "updatedAt": "2019-12-21T03:05:07.819Z",
          "username": "username42"
        },
        {
          "ACL": {
            "*": {
              "read": true
            },
            "zKbgBauI25": {
              "read": true,
              "write": true
            }
          },
          "authData": null,
          "avatar": {
            "url": "https://parsefiles.back4app.com/UiZw9hWi7VWoFFaZElxJ7dxfyjRgYnXC4pl6vHlv/2689276d44776782f9a540e84cb68513_avatar.jpg",
            "name": "2689276d44776782f9a540e84cb68513_avatar.jpg"
          },
          "createdAt": "2019-11-09T14:47:02.130Z",
          "currentLocation": {
            "latitude": 33.85620617,
            "longitude": 35.57492216
          },
          "email": null,
          "emailVerified": null,
          "gemsCollected": 0,
          "id": "zKbgBauI25",
          "points": 0,
          "updatedAt": "2019-12-21T03:05:07.819Z",
          "username": "username41"
        }
      ]
    }
  }
}