Hey,
is it possible to query nested blocks fields within a (multiselect) field right in the blueprint? Here is a small example of three blocks fields which are nested. How to get all thirdlevelblockentry
values into the multiselect field?
Thanks
fields:
firstLevelBlocks:
type: blocks
fieldsets:
secondLevelBlocks:
type: blocks
fieldsets:
thirdLevelBlocks:
type: block
fieldsets:
thirdlevelblockentry:
type: text
multiselectQuery:
type: multiselect
options: query
query:
fetch: site.find("page-with-nested-blocks").firstLevelBlocks...[how to continue this query (if possible)]
text: "{{ block.thirdlevelblockentry }}"
value: "{{ block.thirdlevelblockentry }}"