Hi Team,
we have a connector to pull the groups where the user is a member of
https://graph.microsoft.com/v1.0/users/userEmailId/MemberOf/microsoft.graph.group?$select=id,displayName,securityEnabled
it returns only the first 100 items only
here is the output
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#groups(id,displayName,securityEnabled)",
"@odata.nextLink": "https://graph.microsoft.com/v1.0/users/a1140e29-d7b1-4e29-8e92-f47544b14046/MemberOf/microsoft.graph.group?$select=id%2cdisplayName%2csecurityEnabled&$skiptoken=RFAAAAFAAAAP_P1E7jbylBi5A25lAAAAAAAAAAAAAXMS4yLjg0MC4xMAABSoKoWXoRDAAAA",
"value": [
{
"id": "a759-4dc9-8204-9eecd821b89e",
"displayName": "G ESI USLegal",
"securityEnabled": true
}]
}
here is the filter query where we are trying
https://graph.microsoft.com/v1.0/users/useremail/MemberOf/microsoft.graph.group?$select=id,displayName,securityEnabled&$filter=startswith(displayName,'D')
here is the Graph Explorer output
any help here on how to filter using startwith
or how to loop next items using OdataNext
Your reply is really appreciated.