File tree Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Expand file tree Collapse file tree 1 file changed +12
-0
lines changed Original file line number Diff line number Diff line change @@ -538,6 +538,12 @@ public function limit($limit = '')
538
538
* @param array $value - array value against which
539
539
* comparision is going to happen
540
540
*
541
+ * Example 1 - Array Equals Operator Within Group
542
+ * containedIn("title", ["Electronics", "Apparel"])
543
+ *
544
+ * Example 2 - Array Equals Operator Within Modular Blocks
545
+ * containedIn("additional_info.deals.deal_name", ["Christmas Deal", "Summer Deal"])
546
+ *
541
547
* @return Query
542
548
* */
543
549
public function containedIn ($ field = '' , $ value = array ())
@@ -563,6 +569,12 @@ public function containedIn($field = '', $value = array())
563
569
* @param array $value - array value against which
564
570
* comparision is going to happen
565
571
*
572
+ * Example 1 - Array Not-equals Operator Within Group
573
+ * notContainedIn("title", ["Electronics", "Apparel"])
574
+ *
575
+ * Example 2 - Array Not-equals Operator Within Modular Blocks
576
+ * notContainedIn("additional_info.deals.deal_name", ["Christmas Deal", "Summer Deal"])
577
+ *
566
578
* @return Query
567
579
* */
568
580
public function notContainedIn ($ field = '' , $ value = array ())
You can’t perform that action at this time.
0 commit comments