.withProperty("group", "z")
.store();
Query query = new Query("Product")
.setAncestor(key)
.addProjection(new PropertyProjection("name", String.class))
.addProjection(new PropertyProjection("price", Long.class));
assertResultsInOrder(query, a1, b1, c1, c2);
query = new Query("Product")
.setAncestor(key)
.addProjection(new PropertyProjection("name", String.class))
.addProjection(new PropertyProjection("group", String.class))
.addProjection(new PropertyProjection("price", Long.class));
assertResultsInOrder(query, c1, c2, b1, a1);
}