translate the postgres ANY() operator into Node js using Massive library – Postgresql
I am trying to update an existing postgres query in the Nodejs code base. Below is the existing query to select based on name constructor(schema){ this.table = schema.employee_tb; } row = await this.table.findOne({ name }); Below is the Postgres query…