| title | reviewSetQuery resource type |
|---|---|
| description | Represents a review set query, which is used to query and cull data stored in an eDiscovery reviewSet. |
| ms.localizationpriority | medium |
| author | mahage-msft |
| ms.subservice | ediscovery |
| doc_type | resourcePageType |
| ms.date | 07/22/2024 |
Namespace: microsoft.graph.ediscovery
[!INCLUDE beta-disclaimer]
[!INCLUDE ediscovery-deprecation]
Represents a review set query, which is used to query and cull data stored in an eDiscovery reviewSet.
| 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. |
| 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. |
None.
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)"
}