Search products by query
openbridge.products.list().search(query)
query
string
ProductListBuilder
const { items } = await openbridge.products.list().search('cotton shirt')
const { items } = await openbridge.products .list() .search('blue') .limit(20)
const { items } = await openbridge.products .list() .search('summer dress') .limit(10) .select(['title', 'handle', 'priceRange', 'featuredImage'])
const { items } = await openbridge.products .list() .collection('womens') .search('dress') .limit(12)