Merge pull request #1451 from mahcloud/patch-1

Adding reference to whereNotIn
This commit is contained in:
Rico Sta. Cruz 2020-06-13 10:07:54 +10:00 committed by GitHub
commit 1a76636dd5
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' }) .where({ title: 'Hello' })
.whereIn('id', [1, 2, 3]) .whereIn('id', [1, 2, 3])
.whereNot(···) .whereNot(···)
.whereNotIn('id', [1, 2, 3])
``` ```
#### Where conditions #### Where conditions