-
Notifications
You must be signed in to change notification settings - Fork 642
Closed
Labels
Description
QueryBuilder.andWhereNot seems to be declared in the typings but is not implemented. I got an error when trying to call the function. The related lines are as below:
objection.js/typings/objection/index.d.ts
Lines 814 to 816 in 5b76a4c
| whereNot: WhereMethod<this>; | |
| andWhereNot: WhereMethod<this>; | |
| orWhereNot: WhereMethod<this>; |
objection.js/lib/queryBuilder/QueryBuilderBase.js
Lines 167 to 173 in 5b76a4c
| whereNot(...args) { | |
| return this.addOperation(new KnexOperation('whereNot'), args); | |
| } | |
| orWhereNot(...args) { | |
| return this.addOperation(new KnexOperation('orWhereNot'), args); | |
| } |
Thanks for the awesome library :)