filterGroup resource type

Namespace: microsoft.graph

Defines a set of clauses that an object must satisfy to be considered in scope. An object is considered in scope for the group (the group is evaluated to true) only if all the clauses of the group are evaluated to true.

Properties

Property Type Description
clauses filterClause collection Filter clauses (conditions) of this group. All clauses in a group must be satisfied in order for the filter group to evaluate to true.
name String Human-readable name of the filter group.

JSON representation

The following is a JSON representation of the resource.

{
  "clauses": [
    {
      "@odata.type": "microsoft.graph.filterClause"
    }
  ],
  "name": "String"
}