Operator | Description |
and | Returns records that contain all the conditions specified, for example: http://localhost:8080/onedata/dmdirect/QA/Standard%20Project/DO/Employee?filter=COL1=3 and COL2=2 |
or | Returns records that match any condition specified, for example: http://localhost:8080/onedata/dmdirect/QA/Standard%20Project/DO/Employee?filter= COL1=3 or COL1=2 |
&nullOperator | Filters records by whether the specified column contains a null value. Null operator searches (for null values and non-null values) are mutually exclusive. &nullOperator=IS_NULL: Returns records with null values. You cannot specify any other criteria in this operator. for example: http://localhost:8080/onedata/dmdirect/QA/Standard%20Project/DO/Employee?filter= COL1 or COL1&nullOperator=IS_NULL &nullOperator=IS_NOT_NULL: Excludes records with null values. The search operators and or or are valid, for example: http://localhost:8080/onedata/dmdirect/QA/Standard%20Project/DO/Employee?filter= COL1 and COL2&nullOperator=IS_NOT_ NULL If the column is a reference column, use the constraint name instead of the physical name. Only the and operator is valid in reference column searches. |