Galbar/JsonPath-PHP

Returning parent objects - query select from a child

MilesHart opened this issue · 2 comments

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.

To me it looks like you are looking for something like this:
$[?(@.*[?(@.category == "fiction")].length > 0)]

PD: Sorry for late answer :/

Hi @MilesHart, did this solve your question? can this be closed?