Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add relevant hyperlinks to the "search" operator doc #5343

Merged
merged 1 commit into from
Oct 21, 2024
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
4 changes: 2 additions & 2 deletions docs/language/operators/search.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
```
### Description

The `search` operator filters its input by applying a search expression `<sexpr>`
The `search` operator filters its input by applying a [search expression](../search-expressions.md) `<sexpr>`
to each input value and dropping each value for which the expression evaluates
to `false` or to an error.

Expand Down Expand Up @@ -48,7 +48,7 @@ echo '1 2 3' | zq -z '2 or 3' -
2
3
```
_A search with Boolean logic_
_A search with [Boolean logic](../search-expressions.md#boolean-logic)_
```mdtest-command
echo '1 2 3' | zq -z 'search this >= 2 AND this <= 2' -
```
Expand Down