This GraphQL query fetches All Terms
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
query allTerms { terms (skip: 0, limit: 3) { results { ACL createdAt family { id } id os { id } prices (skip: 0, limit: 3) { results { id } } product { id } region { id } size { id } sku_offerTermCode type updatedAt } } }
{ "data": { "terms": { "results": [ { "ACL": null, "createdAt": "2020-05-08T16:45:44.975Z", "family": { "id": "lFZOCtECrU" }, "id": "SMVfPaKnnH", "os": { "id": "bHA2ttNgMv" }, "prices": { "results": [ { "id": "qeVp5gbCc7" } ] }, "product": { "id": "cNGXt0FnrZ" }, "region": { "id": "pjJLPCqdCS" }, "size": { "id": "VOEwmCapTr" }, "sku_offerTermCode": "222ZN72EQSMT9B4R.JRTCKXETXF", "type": "OnDemand", "updatedAt": "2020-05-08T16:45:45.896Z" }, { "ACL": null, "createdAt": "2020-05-08T16:45:46.397Z", "family": { "id": "lFZOCtECrU" }, "id": "BvtMZZj2MB", "os": { "id": "bHA2ttNgMv" }, "prices": { "results": [ { "id": "Dv2Bj3Io57" }, { "id": "nEEPiXYG65" } ] }, "product": { "id": "cNGXt0FnrZ" }, "region": { "id": "pjJLPCqdCS" }, "size": { "id": "VOEwmCapTr" }, "sku_offerTermCode": "222ZN72EQSMT9B4R.6QCMYABX3D", "type": "Reserved", "updatedAt": "2020-05-08T16:45:48.142Z" }, { "ACL": null, "createdAt": "2020-05-08T16:45:48.677Z", "family": { "id": "lFZOCtECrU" }, "id": "3TCl0DbWO4", "os": { "id": "bHA2ttNgMv" }, "prices": { "results": [ { "id": "HwEEbgtfhk" }, { "id": "PqtAcr0vxz" } ] }, "product": { "id": "cNGXt0FnrZ" }, "region": { "id": "pjJLPCqdCS" }, "size": { "id": "VOEwmCapTr" }, "sku_offerTermCode": "222ZN72EQSMT9B4R.HU7G6KETJZ", "type": "Reserved", "updatedAt": "2020-05-08T16:45:50.462Z" } ] } } }