Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 7 additions & 2 deletions docs/cse/rules/cse-rules-syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -1394,7 +1394,12 @@ Filters results based on the value of a boolean expression.  

`... | where <boolean expression>`

**Example**
**Examples**

`| where jsonArrayContains(field, “vuln_scanner”)`
* `| where jsonArrayContains(field, “vuln_scanner”)`

* `| where` can be used at the beginning of an expression, as well as on subsequent lines after another syntax element has been used to start a preceding line. For example:
```
| json field=fields "foo" as alias
| where toInt(alias) > 5
```
Loading