GET catalog products filtered by productType

Topic summary

A developer is seeking a method to retrieve products from a catalog while filtering by productType. They have attempted using several GraphQL objects but none accept query or filter arguments for this purpose.

Current Challenge:

  • Existing catalog query objects don’t support productType filtering
  • Multiple approaches have been tested without success

Question Posed:

  • Is there a current solution or workaround available?
  • Will this filtering capability be added in future updates?

The post includes a GraphQL query snippet showing their catalog structure (with fields like priceList, variants, prices, title, etc.), but the query appears incomplete or corrupted in the original text. The discussion remains open with no responses or solutions provided yet.

Summarized with AI on November 6. AI used: claude-sonnet-4-5-20250929.

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

}

}

}

}

}