Checkbox query for pages that aren't at the root of the site

Hi, I’m trying to access in a blueprint pages that aren’t directly at the root of the site…
Is there a way to do that ?

At the moment, I have:

software:
    label: Software
    type: checkboxes
    options: query
    query:
      page: softwares

But my page ‘softwares’ (and its chlidren ‘software’, which are the ones I’m trying to list) is inside a folder called ‘ressources’ that contains other types of pages (with their own blueprints and templates).

Any help appreciated! Thanks

You should be able to pass a path to the page attribute

software:
    label: Software
    type: checkboxes
    options: query
    query:
      page: resources/softwares
      fetch: children
2 Likes

Why didn’t I think of that?..
Thanks a lot @texnixe