mirror of
https://github.com/LukeHagar/developer.sailpoint.com.git
synced 2025-12-10 12:27:47 +00:00
added support for not operator in code, removeing caustion from doc
This commit is contained in:
@@ -68,14 +68,6 @@ Filters can also be grouped and used together as composite filters.
|
|||||||
| OR | ```( {expression} \|\| {expression} )``` |```( type == "Employee" \|\| location == "Austin" \|\| name.isNull() )```|
|
| OR | ```( {expression} \|\| {expression} )``` |```( type == "Employee" \|\| location == "Austin" \|\| name.isNull() )```|
|
||||||
| NOT | ```!( {expression} )``` |```!( company == "SailPoint" )```|
|
| 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 Filters
|
||||||
|
|
||||||
|Operation |Pattern | Valid Examples|
|
|Operation |Pattern | Valid Examples|
|
||||||
|
|||||||
Reference in New Issue
Block a user