searchHitsContainer resource type

Namespace: microsoft.graph

Represent the list of search results.

Properties

Property Type Description
hits searchHit collection A collection of the search results.
moreResultsAvailable Boolean Provides information if more results are available. Based on this information, you can adjust the from and size properties of the searchRequest accordingly.
total Int32 The total number of results. Note this isn't the number of results on the page, but the total number of results satisfying the query.

JSON representation

The following JSON representation shows the resource type.

{
  "hits": [{"@odata.type": "microsoft.graph.searchHit"}],
  "moreResultsAvailable": true,
  "total": 1024
}