I am trying to query group owners along with a few properties of the groups. When I add $select
the owners
property gets dropped. I need $select
to reduce the amount of data returned. Any way to achieve both?
/beta/groups?$expand=owners&$filter=startswith(mailNickname, 'rtan')&$top=999&$select=mailEnabled,owners
Response (has mailEnabled
but is missing owners
):
{
"@odata.context": "https://graph.microsoft.com/beta/$metadata#groups(mailEnabled,owners)",
"value": [
{
"mailEnabled": true
},
{
"mailEnabled": true
},
{
"mailEnabled": true
}
]
}