I'm studying jsonpath-plus package and noticed that the XPath query example for "Grabs all books whose property (which, being that we are reaching inside an array, is the numeric index) is not 0" doesn't return the same results as the JSONPath query example. The XPath is returning all elements of all books but JSONPath is returning the last three books (correct).
I'm studying
jsonpath-plus
package and noticed that the XPath query example for "Grabs all books whose property (which, being that we are reaching inside an array, is the numeric index) is not 0" doesn't return the same results as the JSONPath query example. The XPath is returning all elements of all books but JSONPath is returning the last three books (correct).