Microsoft Graph
A Microsoft programmability model that exposes REST APIs and client libraries to access data on Microsoft 365 services.
12,248 questions
This browser is no longer supported.
Upgrade to Microsoft Edge to take advantage of the latest features, security updates, and technical support.
I'm using an API to retrieve search results along with item metadata. But I'm encountering an issue where results from a custom column aren't being returned.
I've created a managed property in the search configuration, but it doesn't seem to be working as intended.
Could you please assist me in resolving this?
Managed Property:
Search Results
API: https://graph.microsoft.com/v1.0/search/query
Request Body:
{
"requests": [
{
"entityTypes": [
"driveItem"
],
"query": {
"queryString": "Test"
},
"fields": [
"title",
"path",
"ListItemID",
"taSPCNumber"
"SPCNumber"
]
}
]
}