πŸ‘€ Our most exciting product launch yet πŸš€ Join us May 8th for Sanity Connect

Sanity groq Filter by item in an array

By Surjith S M

This snippet will return only matched item in a sub array inside a document

return only matched variant


// Returns variant name matched in variant[] array

*[_type == "products" && slug.current == $slug][0] {
    variant[type match $variant][0]{
        ...
      }
  }
  
  
  
// Params

{
   "slug": "slug",
   "variant": "variant"
}

This query will help you to filter a document based on an item match inside an array inside the document.

Contributor

Other schemas by author