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

  1. George Batschinski
  2. BaaS Comparison
Public

3
4
3
4
  • DatabaseDatabase
  • GraphQL API PlaygroundAPI Playground
  • Get Started GuideGet Started
  • IssuesIssues
  • ContributorsContributors
  • Database
    Database
    Get Started Guide
    Get Started
    Issues
    Issues
    Contributors
    Contributors

All Supports

This GraphQL query fetches All Supports


0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
query allSupports {
      supports (skip: 0, limit: 3) {
        results {
          ACL
          BaaS_Vendor (skip: 0, limit: 3) {
            results {
              id
            }
          }
          Remarks
          Support_Levels
          createdAt
          id
          updatedAt
        }
      }
    }
{
  "data": {
    "supports": {
      "results": [
        {
          "ACL": null,
          "BaaS_Vendor": {
            "results": [
              {
                "id": "4IU7xXlsVR"
              },
              {
                "id": "60PfOGHR3V"
              },
              {
                "id": "Ah4Y6iKS3D"
              }
            ]
          },
          "Remarks": "24 hours per day and 07 days per week",
          "Support_Levels": "24/07",
          "createdAt": "2020-05-09T19:10:10.299Z",
          "id": "81vFd3o67i",
          "updatedAt": "2020-05-12T14:24:55.015Z"
        },
        {
          "ACL": null,
          "BaaS_Vendor": {
            "results": [
              {
                "id": "60PfOGHR3V"
              },
              {
                "id": "Ah4Y6iKS3D"
              },
              {
                "id": "HQfzpaS1Xz"
              }
            ]
          },
          "Remarks": "Support for Enterprises",
          "Support_Levels": "Enterprise Support",
          "createdAt": "2020-05-09T19:10:16.893Z",
          "id": "kBFM2u7NGY",
          "updatedAt": "2020-05-12T14:25:04.126Z"
        },
        {
          "ACL": null,
          "BaaS_Vendor": {
            "results": []
          },
          "Remarks": "No support level",
          "Support_Levels": "No Support",
          "createdAt": "2020-05-09T19:10:30.229Z",
          "id": "kg4J0PClOV",
          "updatedAt": "2020-05-12T14:07:11.689Z"
        }
      ]
    }
  }
}