This commit is contained in:
Elena Oresharova
2020-04-07 11:29:11 +02:00
parent 2f52cbd918
commit 7b31657f69
9 changed files with 58 additions and 13 deletions

View File

@@ -1,6 +1,9 @@
using { sap.capire.bookshop as db } from '../db/schema';
service CatalogService {
entity Books as projection on db.Books;
entity BooksInfo (RATING : Integer) as select from db.BooksInfo(REQ_RATING: :RATING) {*};
entity BooksDescr as select from db.BooksDescr;
}