Structure of the filter in useProductSearch

Hi All,

Referring to the documentation example:

import {useProductSearch} from '@shopify/shop-minis-react'

export default function MyComponent() {
  const {products, loading} = useProductSearch({
    query: 'shirt',
    first: 10,
    filters: {
      color: ['RED'],
    },
  })

  console.log({products, loading})
}

In the query, can we specify separate queries for search, maybe in a SQL like way?
Such as moody OR comfort?

Thank you!

hi @ofek, only one query per search request is supported