This GraphQL query fetches All PriceDimensions
0
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
query allPriceDimensions { priceDimensions (skip: 0, limit: 3) { results { ACL class contract createdAt desc family { id } id os { id } price product { id } publicationDate purchase rateCode region { id } size { id } term { id } unit updatedAt } } }
{ "data": { "priceDimensions": { "results": [ { "ACL": null, "class": null, "contract": null, "createdAt": "2020-05-08T16:45:45.377Z", "desc": "$1.888 per Dedicated Windows with SQL Server Enterprise c5d.xlarge Instance Hour", "family": { "id": "lFZOCtECrU" }, "id": "qeVp5gbCc7", "os": { "id": "bHA2ttNgMv" }, "price": 1.888, "product": { "id": "cNGXt0FnrZ" }, "publicationDate": "2020-04-27T21:52:58Z", "purchase": null, "rateCode": "222ZN72EQSMT9B4R.JRTCKXETXF.6YS6EN2CT7", "region": { "id": "pjJLPCqdCS" }, "size": { "id": "VOEwmCapTr" }, "term": { "id": "SMVfPaKnnH" }, "unit": "Hrs", "updatedAt": "2020-05-08T16:45:45.377Z" }, { "ACL": null, "class": "standard", "contract": "1yr", "createdAt": "2020-05-08T16:45:46.724Z", "desc": "Upfront Fee", "family": { "id": "lFZOCtECrU" }, "id": "Dv2Bj3Io57", "os": { "id": "bHA2ttNgMv" }, "price": 15842, "product": { "id": "cNGXt0FnrZ" }, "publicationDate": "2020-04-27T21:52:58Z", "purchase": "All Upfront", "rateCode": "222ZN72EQSMT9B4R.6QCMYABX3D.2TG2D8R56U", "region": { "id": "pjJLPCqdCS" }, "size": { "id": "VOEwmCapTr" }, "term": { "id": "BvtMZZj2MB" }, "unit": "Quantity", "updatedAt": "2020-05-08T16:45:46.724Z" }, { "ACL": null, "class": "standard", "contract": "1yr", "createdAt": "2020-05-08T16:45:47.685Z", "desc": "USD 0.0 per Windows with SQL Server Enterprise (Amazon VPC), c5d.xlarge reserved instance applied", "family": { "id": "lFZOCtECrU" }, "id": "nEEPiXYG65", "os": { "id": "bHA2ttNgMv" }, "price": 0, "product": { "id": "cNGXt0FnrZ" }, "publicationDate": "2020-04-27T21:52:58Z", "purchase": "All Upfront", "rateCode": "222ZN72EQSMT9B4R.6QCMYABX3D.6YS6EN2CT7", "region": { "id": "pjJLPCqdCS" }, "size": { "id": "VOEwmCapTr" }, "term": { "id": "BvtMZZj2MB" }, "unit": "Hrs", "updatedAt": "2020-05-08T16:45:47.685Z" } ] } } }