Thank you Kyle,
I use Admin Graphql to filter products.
Shop: stamp-variants-collection-demo.myshopify.com
Date: Thu, 05 Jun 2025 18:40:44 GMT
X-Request-ID: 57665de1-d685-4841-9d12-11badabe5795-1749148844
This is the query what I run
{
products(first: 250, query: "collection_id:648642101590 AND status:active AND title:cotton*") {
pageInfo {
hasNextPage
}
edges {
cursor
node {
id
title
collections(first: 250) {
nodes {
id
}
}
}
}
}
}