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

  1. Carbon Code Technology
  2. Classified Native App Template
Public

3
0
3
0
  • 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
query allActivities {
      activities (skip: 0, limit: 3) {
        results {
          ACL
          createdAt
          currUser {
            id
          }
          id
          otherUser {
            id
          }
          text
          updatedAt
        }
      }
    }
{
  "data": {
    "activities": {
      "results": [
        {
          "ACL": null,
          "createdAt": "2020-02-13T09:46:07.663Z",
          "currUser": {
            "id": "m7j6RzUzRz"
          },
          "id": "EHE5XeGilT",
          "otherUser": {
            "id": "sHWxwEFn2u"
          },
          "text": "patriciaflores liked your ad: dddd",
          "updatedAt": "2020-02-13T09:46:07.663Z"
        },
        {
          "ACL": null,
          "createdAt": "2020-02-13T09:46:11.817Z",
          "currUser": {
            "id": "m7j6RzUzRz"
          },
          "id": "mLcD7yZA4a",
          "otherUser": {
            "id": "sHWxwEFn2u"
          },
          "text": "patriciaflores liked your ad: jhgkjgkjhkj",
          "updatedAt": "2020-02-13T09:46:11.817Z"
        },
        {
          "ACL": null,
          "createdAt": "2020-02-13T09:46:15.070Z",
          "currUser": {
            "id": "Ro0iZDGDJe"
          },
          "id": "LAtAAcRggj",
          "otherUser": {
            "id": "sHWxwEFn2u"
          },
          "text": "patriciaflores liked your ad: puma",
          "updatedAt": "2020-02-13T09:46:15.070Z"
        }
      ]
    }
  }
}