Files
cloud-cap-samples/packages/bookshop/srv/admin-service.cds
2023-06-16 10:11:31 +02:00

7 lines
247 B
Plaintext

using { sap.capire.bookshop as my } from '../db/schema';
service AdminService @(_requires:'admin',path:'/admin') {
entity Books as projection on my.Books;
entity Authors as projection on my.Authors;
entity Orders as select from my.Orders;
}