It would be useful to specify some type of join or join-fetch strategy approach for users to use through the AuditQuery API. Something like the following pseudo code: {code} AuditQuery query = auditReader.createQuery() .forRevisionsOfEntity( MyAuditEntity.class, true, true ) .fetch( "someCollection", JoinType.INNER ) ; .fetch( "someManyToOneProperty", JoinType.INNER ) {code} |
|