You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- A container can have one of two properties: a condition or a collection.
7
7
- A collection is a collection of containers, each of which also has a condition or collection, and so on to "infinity".
8
-
- In addition, the collection has the `andOrOperator` (AND | OR) property to define the condition for the previous collection.
8
+
- In addition, the collection has the ``andOrOperator`` (AND | OR) property to define the condition for the previous collection.
9
9
- A condition is a field, an operator, a value.
10
10
- Nesting conditions in the collection and determines the correct arrangement of brackets in the final SQL query.
11
11
@@ -19,7 +19,7 @@ Structure of the filter definition array (Container):
19
19
'value' => 'united', // the value by which we filter
20
20
'function' => [ // SQL function applied to the field
21
21
'aggregate' => false, // if the function is aggregating, then it must be true, otherwise you can not define
22
-
'definition' => 'MY_FUNCTION({property}, {value}) = TRUE', // the function itself. Tokens `{property}` and `{value}` will be replaced by a field and value
22
+
'definition' => 'MY_FUNCTION({property}, {value}) = TRUE', // the function itself. Tokens ``{property}`` and ``{value}`` will be replaced by a field and value
23
23
],
24
24
]
25
25
@@ -115,11 +115,11 @@ Structure of the filter definition array (Container):
0 commit comments