Commit 1257fd7989838a843b2a2bcd0e0c8b6468b01959

Authored by Andrew Kane
1 parent e447db1b

Better grouping [skip ci]

Showing 1 changed file with 1 additions and 1 deletions   Show diff stats
@@ -107,8 +107,8 @@ where: { @@ -107,8 +107,8 @@ where: {
107 user_ids: {all: [1, 3]}, # all elements in array 107 user_ids: {all: [1, 3]}, # all elements in array
108 category: {like: "%frozen%"}, # like [master] 108 category: {like: "%frozen%"}, # like [master]
109 category: /frozen .+/, # regexp 109 category: /frozen .+/, # regexp
  110 + category: {prefix: "frozen"}, # prefix
110 store_id: {exists: true}, # exists [master] 111 store_id: {exists: true}, # exists [master]
111 - category: {prefix: "Frozen"}, # prefix  
112 _or: [{in_stock: true}, {backordered: true}], 112 _or: [{in_stock: true}, {backordered: true}],
113 _and: [{in_stock: true}, {backordered: true}], 113 _and: [{in_stock: true}, {backordered: true}],
114 _not: {store_id: 1} # negate a condition 114 _not: {store_id: 1} # negate a condition