View all questions & answers for the Associate-Reactive-Developer exam
For Aggregate as shown below, Ask filter to find the person whose name contains the string "John"
Person.Name = "John"
Person.Name like "John"
Person.Name like "%John%"
Person.Name like 'John'
Submit