This message was deleted.
# help
b
This message was deleted.
l
Thanks @happy-father-98665, yeah this looks wrong. I’ll have a look into it.
@happy-father-98665 we have a fix for this released now, let me know if you are still seeing issues.
h
Thanks a lot @little-author-61621 I checked, but I am still getting the same response for the above query. Can you please check if the changes are released for this endpoint
<https://pricing.api.infracost.io/graphql>
l
@happy-father-98665 it’s working for me now. If you use the following query with the
service
and
productFamily
filters as well it improve the performance:
Copy code
query {
  products(
    filter: {
      vendorName: "gcp"
      region: "europe-west4"
      service: "Compute Engine"
      productFamily: "Compute Instance"
      attributeFilters: [{ key: "machineType", value: "a2-highgpu-1g" }]
    }
  ) {
    prices {
      USD
    }
  }
}
h
Thanks a lot @little-author-61621, now its working for me as well
🙌 1