Hello @djkenneth,
Here is an example that is working for us
const articles = await builder.getAll('blog-article', {
// Include references, like the `author` ref
options: { includeRefs: true },
limit: articlesPerPage,
query: {
'data': {
"$or": [
{
"title": { "$eq": "Qwik Blog" }
},
{
"title": { "$eq": "Partytown blog" }
}
]
}
}
})