Marcin Piczkowski
Results
2
issues of
Marcin Piczkowski
Is it possible to register global error handler? E.g. if I register an API like: ``` getPets: async (c, event: Lambda.APIGatewayProxyEvent, context: Lambda.Context) => { throw new Error('unexpected error') },...
question
I have the following function (based on the provided example in `examples` folder) ``` (db/with-transaction local-db tx (create-user tx {:user {:first-name "Luke" :last-name "Skywalker"}}) (create-user tx {:user {:first-name "John" :last-name...