A space to discuss GraphQL queries, mutations, troubleshooting, throttling, and best practices.
Hi I'm wondering if I can query for a product with a title or metafield. For example if a product contains the word "oversize" in the title, I would want to query for it. Or for the metafield example, if a product has "blue" for the color metafield. Thanks!
HI,
you could refer to this .
query {
products(first: 10, query:"title: *title-key-word*") {
edges {
node {
id
title
handle
}
}
}
}