| I was able to work around this limitation by using two audit queries instead of one. The second query just looks up the revisionsForEntity using the IDs of the entities returned from the first query: def auditQuery = queryCreator.forRevisionsOfEntity(gdc, false, true). add(AuditEntity.id().in(settingIdList)). addOrder(AuditEntity.revisionNumber().asc()) This failed my regression test. I’m analyzing the data & generated SQL to try to figure out why. |