Programming Fundamentals > JSON Path Fundamentals > Flashcards
How do you check if a value matches multiple values in a list?
Using the in operator:[?(@.size in ['S', ‘M'])]
How do you negate a filter?
! negates a filter:[?(!@.isbn)]
Note: matches elements that do not have the isbn property.