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

  1. CubyCode
  2. Catch The Monsters | Game Template - Android/iOS
Public

10
12
10
12
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Catcheds

This GraphQL query fetches All Catcheds


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
query allCatcheds {
      catcheds (skip: 0, limit: 3) {
        results {
          ACL
          createdAt
          id
          monstLocation {
            latitude
            longitude
          }
          monstName
          updatedAt
          userPointer {
            id
          }
        }
      }
    }
{
  "data": {
    "catcheds": {
      "results": [
        {
          "ACL": null,
          "createdAt": "2019-07-26T18:39:38.913Z",
          "id": "QfTKzFu3cv",
          "monstLocation": {
            "latitude": 39.44475275675676,
            "longitude": 26.859075756756756
          },
          "monstName": "Golem",
          "updatedAt": "2019-07-26T18:39:38.913Z",
          "userPointer": {
            "id": "0fFIjnpKwB"
          }
        },
        {
          "ACL": null,
          "createdAt": "2019-07-26T21:16:34.694Z",
          "id": "FtgdYf6e1d",
          "monstLocation": {
            "latitude": 39.444996,
            "longitude": 26.85904872972973
          },
          "monstName": "Huysuz",
          "updatedAt": "2019-07-26T21:16:34.694Z",
          "userPointer": {
            "id": "0fFIjnpKwB"
          }
        },
        {
          "ACL": null,
          "createdAt": "2019-08-28T06:31:11.537Z",
          "id": "MEek4XJGLt",
          "monstLocation": {
            "latitude": 31.4837743,
            "longitude": 74.408428
          },
          "monstName": "Greech",
          "updatedAt": "2019-08-28T06:31:11.537Z",
          "userPointer": {
            "id": "WoeqN3Thh4"
          }
        }
      ]
    }
  }
}