Adding reference to whereNotIn

This commit is contained in:
Michael Hoffert 2020-06-03 07:51:11 -06:00 committed by GitHub
parent cb4e03077f
commit ee079ad300
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -161,6 +161,7 @@ knex
.where({ title: 'Hello' })
.whereIn('id', [1, 2, 3])
.whereNot(···)
.whereNotIn('id', [1, 2, 3])
```
#### Where conditions