Hi @captain_atharv ,
Refer to specify select properties, with below sample snippet. I am able to get Title, WebUrl, Description
properties which are requested in the Graph API.
POST https://graph.microsoft.com/v1.0/search/query
{
"requests": [
{
"entityTypes": [
"listItem"
],
"query": {
"queryString": "Issue 1"
},
"fields": [
"id",
"contentclass",
"title",
"webUrl",
"Description"
]
}
]
}
Here is my search result screenshot.
Fields that you are using fields
should be from the crawled-and-managed-properties-overview.
Since Title
, Description
are already mapped as managed properties, I am able to fetch using Graph response.
If need to fetch any custom field which is not predefined crawled property, you need to add it to search schema, manage-search-schema.
Hope this helps.
If the answer is helpful, please click "Accept Answer" and kindly upvote it. If you have extra questions about this answer, please click "Comment".