added support for not operator in code, removeing caustion from doc

This commit is contained in:
Ritesh Pawar
2025-02-07 21:42:36 +05:30
parent f6eecb8dc9
commit c14d632342

View File

@@ -68,14 +68,6 @@ Filters can also be grouped and used together as composite filters.
| OR | ```( {expression} \|\| {expression} )``` |```( type == "Employee" \|\| location == "Austin" \|\| name.isNull() )```|
| NOT | ```!( {expression} )``` |```!( company == "SailPoint" )```|
:::caution Important
NOT (`!`) operation is not supported in composite group filters with AND (`&&`) and OR (`||`) operations.
Invalid Example : ```!( type == "Employee" ) || (type == "Contractor" )```
Equivalent Valid Example : ```( type != "Employee" ) || (type == "Contractor" )```
:::
#### Operation Filters
|Operation |Pattern | Valid Examples|