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

  1. CubyCode
  2. Woopy | Listings + Chat Web Template (PHP)
Public

19
33
19
33
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Activities

This GraphQL query fetches All Activities


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
query allActivities {
      activities (skip: 0, limit: 3) {
        results {
          ACL
          createdAt
          currUser {
            id
          }
          currentUser {
            id
          }
          id
          otherUser {
            id
          }
          streamPointer {
            id
          }
          text
          updatedAt
        }
      }
    }
{
  "data": {
    "activities": {
      "results": [
        {
          "ACL": null,
          "createdAt": "2017-11-15T10:34:32.338Z",
          "currUser": {
            "id": "IxjY2sP9Ta"
          },
          "currentUser": null,
          "id": "zeBRSKziNj",
          "otherUser": {
            "id": "7RHhpyqPwK"
          },
          "streamPointer": null,
          "text": "@johndoe commented your Ad: House in Taranto",
          "updatedAt": "2017-12-23T06:01:18.775Z"
        },
        {
          "ACL": null,
          "createdAt": "2018-06-11T00:17:53.399Z",
          "currUser": {
            "id": "RNfKNTSnua"
          },
          "currentUser": null,
          "id": "xGTqM0sG0Q",
          "otherUser": {
            "id": "0Fo3SzwC3C"
          },
          "streamPointer": null,
          "text": "@holland commented your Ad: 'ygg'",
          "updatedAt": "2018-06-11T00:17:53.399Z"
        },
        {
          "ACL": null,
          "createdAt": "2017-11-15T10:36:21.247Z",
          "currUser": {
            "id": "IxjY2sP9Ta"
          },
          "currentUser": null,
          "id": "HvpEwsWmNM",
          "otherUser": {
            "id": "IxjY2sP9Ta"
          },
          "streamPointer": null,
          "text": "@fvimagination commented your post: 'House in Taranto'",
          "updatedAt": "2017-12-23T06:01:21.138Z"
        }
      ]
    }
  }
}