I have an Google App Engine entity called MyFile. It has properties such as name, size, path, parentFolder.
Rather than querying to return all the MyFile entities where parent is null like this
Query<MyFile> q1 = objectify.query(MyFile.class).filter("parentFolder", null);
I want to return a list of just the 'name' values where parent is null (eg List<String>), rather than the entire collection of MyFile entities
How do you do that?