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

  1. George Batschinski
  2. BaaS Comparison
Public

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

All Pricings

This GraphQL query fetches All Pricings


0
1
2
3
4
5
6
7
8
9
10
11
12
13
query allPricings {
      pricings (skip: 0, limit: 3) {
        results {
          ACL
          Plan
          Price
          Remarks
          Unit
          createdAt
          id
          updatedAt
        }
      }
    }
{
  "data": {
    "pricings": {
      "results": [
        {
          "ACL": null,
          "Plan": "Free Plan",
          "Price": 0,
          "Remarks": "",
          "Unit": "Month",
          "createdAt": "2020-05-09T19:26:00.695Z",
          "id": "Q8699YhJXo",
          "updatedAt": "2020-05-12T13:31:37.322Z"
        },
        {
          "ACL": null,
          "Plan": "Free Trial",
          "Price": 0,
          "Remarks": null,
          "Unit": "Month",
          "createdAt": "2020-05-09T19:27:08.710Z",
          "id": "DsUAq7mTB9",
          "updatedAt": "2020-05-09T19:29:22.512Z"
        },
        {
          "ACL": null,
          "Plan": "Starter Plan",
          "Price": 50,
          "Remarks": "Shared Hosting",
          "Unit": "Month",
          "createdAt": "2020-05-09T19:27:28.320Z",
          "id": "IfhnPzEQRj",
          "updatedAt": "2020-05-09T19:29:41.407Z"
        }
      ]
    }
  }
}