From c56a7bdc6277ec38cf1ab854f8e25f399acb7437 Mon Sep 17 00:00:00 2001 From: Nadia <98525884+Nadia-JSch@users.noreply.github.com> Date: Thu, 18 Jan 2024 09:41:25 +0200 Subject: [PATCH] DOCS-228 add section, advanced-search-feature --- docs/getstarted/advanced-search-feature.md | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/docs/getstarted/advanced-search-feature.md b/docs/getstarted/advanced-search-feature.md index da94126c..e926b9ce 100644 --- a/docs/getstarted/advanced-search-feature.md +++ b/docs/getstarted/advanced-search-feature.md @@ -108,6 +108,20 @@ will return all objects with name that contains _Brenda_ (case-insensitive). will return all objects with a Service Command Line Argument that contain the text _postgres_. +### NOT CONTAINS + +The not contains operator can be used to retrieve values that do not match the specified case-insensitive substring for text columns. As with the Equals operator, you can use this operator on a column representing a list – the partial non-match will be tried against each item in that list. Not Contains values must be enclosed by parenthesis. + +Examples: + +`name not contains ("brenda")` + +will return all objects with a name field that does not contain Brenda (case-insensitive). + +`service_command_line_args not contains ("postgres")` + +will return all objects with a Service Command Line Argument that do not contain the text _postgres_. + ### COMPARATORS `(>, >=, <, <=)` The comparator operators can be used with number, date, and IP columns. As with the Equals operator, when using any of these operators on a column representing a list, the comparison will be done against each element in the list & if any are true, the record will return.