schema.cdscat-service.cds
1namespace sap.bookshop;2 3entity Books {4 key ID : UUID;5 title : String(111);6 stock : Integer;7 author : Association to Authors;8}9@title: 'Authors'10entity Authors {
ProblemsTerminalDebug Console
$ cds watch
[cds] - loaded model from 2 file(s)
[cds] - connect to db > sqlite { url: ':memory:' }
[cds] - serving CatalogService at /odata/v4/catalog
[cds] - server listening on http://localhost:4004