Multiselect showing children of two pages

Hello!

In my blueprint, I’m currently doing this to create a multiselect:

  partners:
    label: Partners
    type: multiselect
    search: true
    options: query
    query:
      fetch: site.find("institutions").children

However, now I also want to add the results of

  fetch: site.find("people").children

to the multiselect: I want to have both people and institutions in there.

Is there a simple way to achieve that in the blueprint?

Thank you!
Fabian

fetch: site.find("institutions", "people").children

Ah, so easy! Thank you!