Files
cloud-cap-samples/packages/bookshop/srv/cat-service.cds
Elena Oresharova 7b31657f69 Update
2020-04-07 11:29:11 +02:00

9 lines
270 B
Plaintext

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;
}