SAP Community Call
This commit is contained in:
@@ -1,4 +1,7 @@
|
||||
using {managed} from '@sap/cds/common';
|
||||
using {
|
||||
cuid,
|
||||
managed
|
||||
} from '@sap/cds/common';
|
||||
using {sap.capire.bookshop} from '@capire/bookshop';
|
||||
|
||||
namespace sap.capire.graphql;
|
||||
@@ -13,3 +16,11 @@ entity Chapters : managed {
|
||||
key number : Integer;
|
||||
title : String;
|
||||
}
|
||||
|
||||
entity Orders : cuid, managed {
|
||||
@mandatory
|
||||
book : Association to bookshop.Books;
|
||||
@mandatory
|
||||
@assert.range : [ 1, 5 ]
|
||||
quantity : Integer;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user