Returning parent objects - query select from a child
MilesHart opened this issue · 2 comments
MilesHart commented
I have data with parent/child nested object (similar to the store and books example)..
Is it possible to return the parent object??
e.g.
$..book[?(@.category == 'fiction')]
returns all the books with category of fiction. I want to return the store object. So inessence.
Return me all the stores that have a book of category fiction.
Galbar commented
To me it looks like you are looking for something like this:
$[?(@.*[?(@.category == "fiction")].length > 0)]
PD: Sorry for late answer :/
Galbar commented
Hi @MilesHart, did this solve your question? can this be closed?