Query Language: query multiple Structure fields into one multiselect

Can one combine queries for multiple Structure fields from the same page into a single query with a blueprint?


field1:
type: multiselect
query:
fetch: site.find(“page-name”).structureName1.toStructure
text: “{{ structureItem.fieldKeyName }}”

field2:
type: multiselect
query:
fetch: site.find(“page-name”).structureName2.toStructure
text: “{{ structureItem.fieldKeyName }}”


I would like to query the results from structureName1 and structureName2 in the same multiselect field i.e. combine the two fetch queries into one. The name of fieldKeyName is the same for both Structures.

I’d go down the API route (options from API), or create a page model. That is, combine both structure field into one.

OK, thanks.

Let me know when and if you need more help.