db.getRepository(MyModel).find({
where: [
{ name: "john" },
{ lastName: "doe" }
]
})
Pass an array to where
db.getRepository(MyModel).find({
where: [
{ name: "john" },
{ lastName: "doe" }
]
})
Pass an array to where