With Google App Engine using Objectify to query the datastore, I would like to use a query like
objectifyService.query(Entity.class).filter("name contains", a);
which would return a list with all the entities containing the 'a' caracter in their names. However the contains operator doesn't exist.
Is there a simple way to do that?