filterClause resource type
Namespace: microsoft.graph
Represents a single assertion that a candidate object must satisfy, and is evaluated to either true
(object satisfies the assertion) or false
(object does not satisfy the assertion).
Properties
Property | Type | Description |
---|---|---|
operatorName | String | Name of the operator to be applied to the source and target operands. Must be one of the supported operators. Supported operators can be discovered. |
sourceOperandName | String | Name of source operand (the operand being tested). The source operand name must match one of the attribute names on the source object. |
targetOperand | filterOperand | Values that the source operand will be tested against. |
JSON representation
The following JSON representation shows the resource type.
{
"operatorName": "String",
"sourceOperandName": "String",
"targetOperand": {
"@odata.type": "microsoft.graph.filterOperand"
}
}