How can I do a select for all documents that have a parent.id that is equal to 3? I try doing this.parents.id == 3, but it doesn't seem to be working...
[parents] => Array (
[0] => Array (
[id] => 1
[title] => Folder 1
)
[1] => Array (
[id] => 3
[title] => Folder 2
)
)