Commit 1257fd7989838a843b2a2bcd0e0c8b6468b01959
1 parent
e447db1b
Exists in
master
and in
17 other branches
Better grouping [skip ci]
Showing
1 changed file
with
1 additions
and
1 deletions
Show diff stats
README.md
... | ... | @@ -107,8 +107,8 @@ where: { |
107 | 107 | user_ids: {all: [1, 3]}, # all elements in array |
108 | 108 | category: {like: "%frozen%"}, # like [master] |
109 | 109 | category: /frozen .+/, # regexp |
110 | + category: {prefix: "frozen"}, # prefix | |
110 | 111 | store_id: {exists: true}, # exists [master] |
111 | - category: {prefix: "Frozen"}, # prefix | |
112 | 112 | _or: [{in_stock: true}, {backordered: true}], |
113 | 113 | _and: [{in_stock: true}, {backordered: true}], |
114 | 114 | _not: {store_id: 1} # negate a condition | ... | ... |