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
|`QuotedString`|`"sample text"`| Must start and end with an unescaped `"` character |
72
-
|`Number`|`123.45`| Must start and end with a valid `0-9` digit. |
73
-
|`BooleanTrue`|`true`| Accepts `true` as a boolean only. |
74
-
|`BooleanFalse`|`false`| Accepts `false` as a boolean only. |
75
-
|`SelectorPath`|`.selector_path`| Starts with a `.` and ends with whitespace blank space. This crate currently uses [gjson](https://github.com/tidwall/gjson.rs) and so the full gjson syntax for identifiers is supported. |
76
-
|`And`|`&&`| N/A |
77
-
|`Not`|`!`| Must be before Boolean identifier or expression or be followed by an operation |
78
-
|`Or`| <code>||<code> | N/A |
79
-
|`Contains`|`CONTAINS `| Ends with whitespace blank space. |
80
-
|`ContainsAny`|`CONTAINS_ANY `| Ends with whitespace blank space. |
81
-
|`ContainsAll`|`CONTAINS_ALL `| Ends with whitespace blank space. |
82
-
|`In`|`IN `| Ends with whitespace blank space. |
83
-
|`StartsWith`|`STARTSWITH `| Ends with whitespace blank space. |
84
-
|`EndsWith`|`ENDSWITH `| Ends with whitespace blank space. |
85
-
|`NULL`|`NULL`| N/A |
86
-
|`Coerce`|`COERCE`| Coerces one data type into another using in combination with 'Identifier'. Syntax is `COERCE <expression> _identifer_`. |
87
-
|`Identifier`|`_identifier_`| Starts and end with an `_` used with 'COERCE' to cast data types. Currently the onyl supported `Identifier` is `_datetime_`. |
|`QuotedString`|`"sample text"`| Must start and end with an unescaped `"` character |
72
+
|`Number`|`123.45`| Must start and end with a valid `0-9` digit. |
73
+
|`BooleanTrue`|`true`| Accepts `true` as a boolean only. |
74
+
|`BooleanFalse`|`false`| Accepts `false` as a boolean only. |
75
+
|`SelectorPath`|`.selector_path`| Starts with a `.` and ends with whitespace blank space. This crate currently uses [gjson](https://github.com/tidwall/gjson.rs) and so the full gjson syntax for identifiers is supported. |
76
+
|`And`|`&&`| N/A |
77
+
|`Not`|`!`| Must be before Boolean identifier or expression or be followed by an operation |
78
+
|`Or`| <code>||<code> | N/A |
79
+
|`Contains`|`CONTAINS `| Ends with whitespace blank space. |
80
+
|`ContainsAny`|`CONTAINS_ANY `| Ends with whitespace blank space. |
81
+
|`ContainsAll`|`CONTAINS_ALL `| Ends with whitespace blank space. |
82
+
|`In`|`IN `| Ends with whitespace blank space. |
83
+
|`Between`|` BETWEEN `| Starts & ends with whitespace blank space. example `1 BETWEEN 0 10`|
84
+
|`StartsWith`|`STARTSWITH `| Ends with whitespace blank space. |
85
+
|`EndsWith`|`ENDSWITH `| Ends with whitespace blank space. |
86
+
|`NULL`|`NULL`| N/A |
87
+
|`Coerce`|`COERCE`| Coerces one data type into another using in combination with 'Identifier'. Syntax is `COERCE <expression> _identifer_`. |
88
+
|`Identifier`|`_identifier_`| Starts and end with an `_` used with 'COERCE' to cast data types. Currently the onyl supported `Identifier` is `_datetime_`. |
0 commit comments