filterClause resource type

Namespace: microsoft.graph

Important

APIs under the /beta version in Microsoft Graph are subject to change. Use of these APIs in production applications is not supported. To determine whether an API is available in v1.0, use the Version selector.

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 is a JSON representation of the resource.

{
  "operatorName": "String",
  "sourceOperandName": "String",
  "targetOperand": {
    "@odata.type": "microsoft.graph.filterOperand"
  }
}