I have an excerpt defined on a Repo like this:
@RepositoryRestResource(excerptProjection = ListAccountProjection.class)
public interface IAccountRepository extends IRepository<Account> {
When I exec GET /accounts it works like expected.
I have another Projection ShortAccountProjection.
When I exec GET /accounts?projection=short it is simply ignored. So the projection param will never override the exerpt projection from the repo?
When I remove the excerpt from the repo, the projection "sort" works as expected.