constraints on service level

This commit is contained in:
Daniel Hutzel
2025-07-23 17:36:58 +02:00
parent 044baec701
commit d57c29e126
4 changed files with 90 additions and 61 deletions

View File

@@ -1,6 +1,6 @@
using { sap.capire.bookshop as my } from '../db/schema';
service AdminService @(path:'/admin') {
entity Authors as projection on my.Authors;
entity Authors as projection on my.Authors excluding { books};
entity Books as projection on my.Books;
entity Genres as projection on my.Genres;
}