Which of the following JSONPath syntaxes will you use in order to filter all books where price is less than $10?( )
$.book[@.price 10)]
$..book[?(@.price<10)]
//book[price<10]
$.book[,(@.price<10)]
Which of the following JSONPath syntaxes will you use in order to filter all books where price is less than $10?( )
$.book[@.price 10)]
$..book[?(@.price<10)]
//book[price<10]
$.book[,(@.price<10)]