diff --git a/docs/tools/sdk/typescript/filter.md b/docs/tools/sdk/typescript/filter.md index 883657a82..2fa606cd9 100644 --- a/docs/tools/sdk/typescript/filter.md +++ b/docs/tools/sdk/typescript/filter.md @@ -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|