Query nested blocks with KQL

I’m currently trying to query data to my React frontend and some blocks in my blueprint have nested blocks that I’d like to get the results of as well, if they’re not empty.

My current query to blocks:

query: "page('notes/test')",
select: {
   content: "page.text.toBlocks",
 }

And I’d like to access the subblocks field, which is a nested block.

Is that in any way possible or are there other ways to feed my react frontend with that data?

Thanks a bunch! :slight_smile: