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

  1. Back4App
  2. Industries and Activities
Public

31
26
31
26
  • 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
query allActivities {
      activities (skip: 0, limit: 3) {
        results {
          ACL
          createdAt
          id
          nationalIndustry {
            id
          }
          title
          updatedAt
        }
      }
    }
{
  "data": {
    "activities": {
      "results": [
        {
          "ACL": null,
          "createdAt": "2019-12-17T23:58:19.155Z",
          "id": "vwJSC2RSAD",
          "nationalIndustry": {
            "id": "GXSraiiEFg"
          },
          "title": "Popcorn farming, field and seed production",
          "updatedAt": "2019-12-17T23:58:19.155Z"
        },
        {
          "ACL": null,
          "createdAt": "2019-12-17T23:58:19.155Z",
          "id": "5qeInv7f5u",
          "nationalIndustry": {
            "id": "bgttapgfyg"
          },
          "title": "Wheat farming, field and seed production",
          "updatedAt": "2019-12-17T23:58:19.155Z"
        },
        {
          "ACL": null,
          "createdAt": "2019-12-17T23:58:19.155Z",
          "id": "HZT2ctO43C",
          "nationalIndustry": {
            "id": "T9TwdfSlFm"
          },
          "title": "Flaxseed farming, field and seed production",
          "updatedAt": "2019-12-17T23:58:19.155Z"
        }
      ]
    }
  }
}