I have an entity w/ @Id in String type and I managed to insert one record.
When I execute the query below, I am able to see the record returned by the query:
ofy().transactionless().load().type(Score.class).first().now();
However, when I try to query via the id() method, I got zero record.
ofy().transactionless().load().type(Score.class).id("idstring").now;
Any idea what may I have missed?
Thanks!