| When using a query API such as:
auditReader.createQuery().forRevisionsOfEntity( SomeNonAuditedEntity.class, false, false )
.add( AuditEntity.property( "someProperty.someNested" ).eq( someValue ) )
.getResultList();
will cause a `NullPointerException` when attempting to locate relation information.
The query API should likely throw a more relevant exception such as:
|