Skip to content

Tag: javascript

How to escape it properly?

I have sql string written with template string syntax: I have problems with binding second param – $2 because of single quote. How should I write it properly ? Error: Error: Query failed: bind message supplies 2 parameters, but prepared statement “” requires 1 Answer I think you’re sup…

How to get related field with typeorm?

In typeorm I run this code and the results are without lastApprover and managerApprover fields. I need those properties to be in the object. what I need to change to achieve that? This is my code: task.ts user.ts: Answer Try to add relations