不要怂,就是干,撸起袖子干!

Commit fc8334cb by Hugo Des Committed by Simon Schick

docs: clarifyied usage of Op.and (#11508)

1 parent 7a90df5c
Showing with 1 additions and 1 deletions
......@@ -145,7 +145,7 @@ Sequelize exposes symbol operators that can be used for to create more complex c
```js
const Op = Sequelize.Op
[Op.and]: {a: 5} // AND (a = 5)
[Op.and]: [{a: 5}, {b: 6}] // (a = 5) AND (b = 6)
[Op.or]: [{a: 5}, {a: 6}] // (a = 5 OR a = 6)
[Op.gt]: 6, // > 6
[Op.gte]: 6, // >= 6
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!