Here’s the translation:
I am looking for a way to retrieve products from a catalog but also be able to filter the products by productType. I’ve tried with several objects, but none allow query or filter as an argument. Do you know of any solution or if this feature will be included in the future?"
{
catalog(id: “gid://shopify/CompanyLocationCatalog/7777777”) {
id
title
priceList {
id
currency
prices(first: 10) {
edges {
node {
variant {
id
product {
id
title
}
title
price
}
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
}
}