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 = '')
538538 * @param array $value - array value against which
539539 * comparision is going to happen
540540 *
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+ *
541547 * @return Query
542548 * */
543549 public function containedIn ($ field = '' , $ value = array ())
@@ -563,6 +569,12 @@ public function containedIn($field = '', $value = array())
563569 * @param array $value - array value against which
564570 * comparision is going to happen
565571 *
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+ *
566578 * @return Query
567579 * */
568580 public function notContainedIn ($ field = '' , $ value = array ())
You can’t perform that action at this time.
0 commit comments