Just wondering if there is any way to chain page collections.
Some context:
I want to find all of the child pages of 'Blog A' that have the category 'Tech'. Is that possible?
Currently, if i do:
content:
items:
'@taxonomy':
category: [Tech]
I will get all pages with category 'Tech'.
If I do:
content:
items:
- '@page' = /blog-a
- '@taxonomy':
category: [Tech]
I will get all the pages in Blog A, and all pages with category 'Tech' (even in they are under /blog-b)