Hello, we are using Umbraco 13 for building a Headless site against NextJs , for the pages, we defined a couple of page placeholders “Block List” properties that hosts the page components, within those components there are some components that play as layout components - container, row col splits.. etc, so those components have their own block list fields.
As we are using Content Delivery API V2 To get those block list fields we use
expand=properties[$all[properties[$all]]
, but this expand fields for two levels, so we added and extra level to support blocks on third level, but this approach is not maintainable as we cannot predict all the scenarios and the block list fields could be presented in any level, Using V1
expand= all
works fine as it expands all props all the way.
So is there a way to get this to work dynamically, for example a configuration to define couple of field aliases to expand by default or something like that.
Thanks!