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" } ] } } }