From 19c886d6dc4358a013893021f21e3e206ff4725b Mon Sep 17 00:00:00 2001 From: Gregor Wolf Date: Fri, 12 Nov 2021 21:41:39 +0100 Subject: [PATCH] fix implicit redirection issue --- bookshop/srv/cat-service.cds | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/bookshop/srv/cat-service.cds b/bookshop/srv/cat-service.cds index a8ac0f88..223b045a 100644 --- a/bookshop/srv/cat-service.cds +++ b/bookshop/srv/cat-service.cds @@ -22,7 +22,9 @@ service CatalogService @(path : '/browse') { }; @readonly - entity Authors as projection on my.Authors excluding { + entity Authors as projection on my.Authors { + * , books : redirected to Books + } excluding { createdBy, modifiedBy };