fancy-application-28950
05/23/2023, 5:28 AM{
"query": "{ products(filter: {vendorName: \"aws\", service: \"AmazonEC2\", region: \"us-west-1\", attributeFilters: [{key: \"instanceType\", value: \"t3.medium\"}, {key: \"operatingSystem\", value: \"Windows\"}, {key: \"tenancy\", value: \"Shared\"}, {key: \"capacitystatus\", value: \"Used\"}, {key: \"preInstalledSw\", value: \"NA\"}]}) { prices(filter: {purchaseOption: \"on_demand\"}) { USD } } } "
}
For the above request body, I'm getting the following response.
{
"data": {
"products": [
{
"prices": [
{
"USD": "0.0496000000"
}
]
},
{
"prices": [
{
"USD": "0.0680000000"
}
]
}
]
}
}
little-author-61621
{
"query": "{ products(filter: {vendorName: \"aws\", service: \"AmazonEC2\", region: \"us-west-1\", attributeFilters: [{key: \"instanceType\", value: \"t3.medium\"}, {key: \"operatingSystem\", value: \"Windows\"}, {key: \"tenancy\", value: \"Shared\"}, {key: \"capacitystatus\", value: \"Used\"}, {key: \"preInstalledSw\", value: \"NA\"}]}) { attributes { key, value }, prices(filter: {purchaseOption: \"on_demand\"}) { USD } } } "
}