-2

Is it possible to build a Query object with Objectify with a query string? I mean, I know Objectify builds queries like:

Query<Foo> q = ofy().load().type(Foo.class);
q = q.filter("bar", b);

However, is there a way or any plans for Objectify to have the ability to build Query objects from query string like:

String query = "SELECT * FROM Foo WHERE bar = b";
List<Foo> foo = ofy().buildQuery(query).asList(); 
quarks
  • 33,478
  • 73
  • 290
  • 513

1 Answers1

0

Currently, it is not possible to build queries in Objectify from query string.

Thanos Makris
  • 3,115
  • 2
  • 17
  • 26