Can I query a product by title or a metafield?

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
        
      }
    }
  }
}