Fix merge conflicts
This commit is contained in:
parent
9743aca715
commit
58162410ea
|
@ -467,7 +467,7 @@ class InternalBuilder {
|
|||
const { $and } = filters
|
||||
query = query.where(x => {
|
||||
for (const condition of $and.conditions) {
|
||||
x = this.addFilters(x, condition, table, opts)
|
||||
x = this.addFilters(x, condition, opts)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
@ -476,7 +476,7 @@ class InternalBuilder {
|
|||
const { $or } = filters
|
||||
query = query.where(x => {
|
||||
for (const condition of $or.conditions) {
|
||||
x = this.addFilters(x, { ...condition, allOr: true }, table, opts)
|
||||
x = this.addFilters(x, { ...condition, allOr: true }, opts)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue