Is there a way to do OR filtering?

Can I use prismic.filter.at to do OR filtering?

Let's say you had this code:

      filters: [
        prismic.filter.at('my.blog_article.written_by', page.value.id),
        prismic.filter.at('my.blog_article.reviewed_by', page.value.id),
      ],

This is currently an AND filter. Could it be OR?

Hi @leopold,

The available filters for the Document API are here: Document API Technical Reference - Documentation - Prismic. any might be closest to what you're looking for!