Files field query current page and children

I need the files filed select to show the child images with the template ‘thumb’, but also the current page images with the template ‘thumb’, is this possible?

Currently I have this, but it only gets the child pages images

query: page.children.images.filterBy('template', 'thumb')

Try:

query: page.images.add(page.children.images).filterBy('template', 'thumb')

Not 100% sure if this works, if not, you can create a custom method or a method in a page model.

ace! works great, thank you :slight_smile: add looks very handy.