In Google App Engine, how do I match strings that contain strings? My datastore contains 'tester' and if I pass in 'est' then tester should be returned.
Filter myFilter = new FilterPredicate("name",FilterOperator.IN, "est");
But I receive this error: A collection of values is required
I do not think I am using the filter correctly.