add support to not in filters

Signed-off-by: Vijay Kumar Rathore <professional.vijay8492@gmail.com>
This commit is contained in:
Vijay Kumar Rathore
2022-06-22 15:08:39 +02:00
parent 14e9f41da9
commit 09cd86d955
3 changed files with 4 additions and 1 deletions

View File

@@ -193,7 +193,8 @@ Currently, the default value for {orgs} is <b>noco</b>. Users will be able to ch
| Operation | Meaning | Example |
|---|---|---|
| eq | equal | (colName,eq,colValue) |
| not | not equal | (colName,not,colValue) |
| neq | not equal | (colName,neq,colValue) |
| not | not equal (alias of neq) | (colName,not,colValue) |
| gt | greater than | (colName,gt,colValue) |
| ge | greater or equal | (colName,ge,colValue) |
| lt | less than | (colName,lt,colValue) |