Is it feasible to execute multiple operations using Op.or?
For instance, when attempting:
[Op.and]: {
[Op.or]: [{x: 1}, {x: 1}],
[Op.or]: [{y}, {y}]
}
The second Op.or seems to replace the first one. Is there a method to perform a (x or x) AND (y or y) operation?