-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Closed
Description
taking a page from chai's book, instead of
knex('users').where(function() {
this.where('id', 1).orWhere('id', '>', 10)
}).orWhere({name: 'Tester'})something like
knex('users').where(function() {
this.where('id', 1).or.where('id', '>', 10)
}).or.where({name: 'Tester'})one's that could be helpful:
- not
- in
- exists
- null (though reserved word issues?)
- raw
Metadata
Metadata
Assignees
Labels
No labels