From 05cdb673299639ab638a2862dc1ed78fce70ce83 Mon Sep 17 00:00:00 2001 From: Daniel Date: Tue, 8 Jun 2021 16:01:45 +0200 Subject: [PATCH] Fixed: books title was missing --- bookshop/srv/cat-service.cds | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookshop/srv/cat-service.cds b/bookshop/srv/cat-service.cds index 81777afb..e1eb8ad5 100644 --- a/bookshop/srv/cat-service.cds +++ b/bookshop/srv/cat-service.cds @@ -3,7 +3,7 @@ service CatalogService @(path:'/browse') { /** For displaying lists of Books */ @readonly entity ListOfBooks as projection on Books { - ID, author, genre, price, currency + ID, title, author, genre, price, currency } /** For display in details pages */