Skip to content

Missing implementation for QueryBuilder.andWhereNot #1675

@bluwy

Description

@bluwy

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:

whereNot: WhereMethod<this>;
andWhereNot: WhereMethod<this>;
orWhereNot: WhereMethod<this>;

whereNot(...args) {
return this.addOperation(new KnexOperation('whereNot'), args);
}
orWhereNot(...args) {
return this.addOperation(new KnexOperation('orWhereNot'), args);
}

Thanks for the awesome library :)

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions