I have this Javascript and I'm trying to make an OR clause for the where but I cannot figure out the syntax and the manual does not show any OR examples.
query
.select([…snipped…) // <- specify select columns here
.where('errorMessage').contains('Some text')
.or('errorMessage').contains('Some other text')
.limit(1000);