filterOperatorSchema resource type
Namespace: microsoft.graph
Describes an operator that can be used in a filter.
Properties
Property | Type | Description |
---|---|---|
arity | scopeOperatorType | Arity of the operator. Possible values are: Binary , Unary . The default is Binary . |
multivaluedComparisonType | scopeOperatorMultiValuedComparisonType | Possible values are: All , Any . Applies only to multivalued attributes. All means that all values must satisfy the condition. Any means that at least one value has to satisfy the condition. The default is All . |
name | String | Operator name. |
supportedAttributeTypes | attributeType collection | Attribute types supported by the operator. Possible values are: Boolean , Binary , Reference , Integer , String . |
JSON representation
The following JSON representation shows the resource type.
{
"arity": "String",
"multivaluedComparisonType": "String",
"name": "String",
"supportedAttributeTypes": ["String"]
}