New Feature: Property List Grouping
Property list grouping is a powerful new syntax that allows you to apply a single comparison operation across multiple properties, making it dramatically easier to search for values across multiple fields without writing repetitive conditions.
Instead of writing verbose, repetitive filters like this:
var input = """FirstName @=* "paul" || LastName @=* "paul" || Email @=* "paul" """;You can now write this:
var input = """(FirstName, LastName, Email) @=* "paul" """;