When I run the following Java code
TypedQuery<Folder> rootFolderQuery = this.entityManager.createQuery("SELECT f FROM Folder f WHERE f.parent IS NULL", Folder.class); final List<Folder> resultList = rootFolderQuery.getResultList();
none of the Folder objects has its fields populated. Running the same query from the Explorer gives the results as expected. Any ideas what I'm doing wrong? This code had worked at some point in the past, but may have been a victim of an objectDB upgrade.