reviewSetQuery resource type
Namespace: microsoft.graph.ediscovery
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 review set query, which is used to query and cull data stored in an eDiscovery reviewSet.
Methods
Method | Return Type | Description |
---|---|---|
List | microsoft.graph.ediscovery.reviewSetQuery collection | List the review set queries in a review set. |
Create | microsoft.graph.ediscovery.reviewSetQuery | Create a new review set query. |
Get | microsoft.graph.ediscovery.reviewSetQuery | Read the properties and relationships of a reviewSetQuery object. |
Update | None | Update a review set query. |
Delete | None | Delete review set query. |
Apply tags | None | Apply tags to documents that match the specified query. |
Properties
Property | Type | Description |
---|---|---|
createdBy | identitySet | The user who created the query. |
createdDateTime | DateTimeOffset | The time and date when the query was created. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z |
displayName | String | The name of the query. |
id | String | The unique identifier of the query. Read-only. |
lastModifiedBy | identitySet | The user who last modified the query. |
lastModifiedDateTime | DateTimeOffset | The date and time the query was last modified. The Timestamp type represents date and time information using ISO 8601 format and is always in UTC time. For example, midnight UTC on Jan 1, 2014 is 2014-01-01T00:00:00Z |
query | String | The query string in KQL (Keyword Query Language) query. For details, see Document metadata fields in Advanced eDiscovery. This field maps directly to the keywords condition. You can refine searches by using fields listed in the searchable field name paired with values; for example, subject:"Quarterly Financials" AND Date>=06/01/2016 AND Date<=07/01/2016. |
Relationships
None.
JSON representation
The following JSON representation shows the resource type.
{
"@odata.type": "#microsoft.graph.ediscovery.reviewSetQuery",
"query": "String",
"lastModifiedBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"createdBy": {
"@odata.type": "microsoft.graph.identitySet"
},
"lastModifiedDateTime": "String (timestamp)",
"id": "String (identifier)",
"displayName": "String",
"createdDateTime": "String (timestamp)"
}