Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
11,818 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
Hello! Currently, when testing on Graph Explorer, I am noticing that using the Search API does not return every result that matches the query. I have added 3 files to One Drive in the time frame between January 1st, 2023 and today, September 13th, 2023. When running the following query, I am only returned 2 of the 3 files, every time. Please advise!
{
"requests": [
{
"entityTypes": [
"driveItem"
],
"query": {
"queryString": "lastModifiedTime>=01/01/2023 AND lastModifiedTime<=09/13/2023"
}
}
]
}