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.