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

  1. CubyCode
  2. Topics | Universal Social Discussion for Android/iOS
Public

12
12
12
12
  • 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
query allActivities {
      activities (skip: 0, limit: 3) {
        results {
          ACL
          createdAt
          currUser {
            id
          }
          id
          otherUser {
            id
          }
          text
          topicPointer {
            id
          }
          updatedAt
        }
      }
    }
{
  "data": {
    "activities": {
      "results": [
        {
          "ACL": null,
          "createdAt": "2018-01-10T05:48:00.159Z",
          "currUser": {
            "id": "vP1zbupMBJ"
          },
          "id": "pgVlpmaFLd",
          "otherUser": {
            "id": "OveCAyNqv9"
          },
          "text": null,
          "topicPointer": {
            "id": "periba51yJ"
          },
          "updatedAt": "2019-12-20T23:07:55.581Z"
        },
        {
          "ACL": null,
          "createdAt": "2018-01-10T05:44:18.680Z",
          "currUser": {
            "id": "vP1zbupMBJ"
          },
          "id": "UCGVNMkHvJ",
          "otherUser": {
            "id": "OveCAyNqv9"
          },
          "text": null,
          "topicPointer": {
            "id": "periba51yJ"
          },
          "updatedAt": "2019-12-20T23:07:56.167Z"
        },
        {
          "ACL": null,
          "createdAt": "2018-06-04T21:29:33.578Z",
          "currUser": {
            "id": "CfJ3rGlNIf"
          },
          "id": "PmB1CllZgB",
          "otherUser": {
            "id": "OveCAyNqv9"
          },
          "text": null,
          "topicPointer": {
            "id": "GIL0agzKc6"
          },
          "updatedAt": "2019-12-20T23:07:54.827Z"
        }
      ]
    }
  }
}