Is there any OR operator in TypeORM that I missed in the documentation or source code?
I'm attempting to conduct a simple search using a repository.
db.getRepository(MyModel).find({
name : "john",
lastName: "doe"
})
I am aware that this creates an AND operation, but I require an OR operation like in SQL:
name='john' OR lastName='doe'
Do I have to resort to using the query builder for something as basic as this?