Files
cloud-cap-samples/orders/test/model.cds
2020-11-20 18:53:04 +01:00

15 lines
263 B
Plaintext

service WithDraft {
@odata.draft.enabled
entity Boo as projection on Foo;
}
service WithoutDraft {
entity Boo as projection on Foo;
}
entity Foo {
key ID : UUID;
bar : Composition of many {
key pos : Integer; //> meant to be a local key only
}
}