Files
cloud-cap-samples/test/events.cds
2021-06-09 07:49:55 +02:00

7 lines
217 B
Plaintext

service Sue {
@cds.persistence.skip
entity Foo { key ID:Integer; title:String; status:String(1); }
entity Bar { key ID:Integer; foo: Association to Foo }
event Foo.changed : projection on Foo { ID, status }
}