How can i get records according to createdBy column id CDS?
I have set an authentication with approuter, and set the entity to managed
schema:
entity Items : managed,cuid { key ID : UUID; name : String(111);}
srv:
entity Items as SELECT from E {*,<br> <--THIS IS NOT WORKING--> E.createdBy = $user.id; } excluding { createdBy, modifiedBy };