Hi @Ganesh Jagdale ,
Thanks for reaching out.
I understand you are looking to get a user detail along with issuerAssignedId in response using Graph API.
As you are filtering based on identities, you must supply both issuer and issuerAssignedId in Graph API V1 endpoint as:
https://graph.microsoft.com/v1.0/users?$select=displayName,Identities&$filter=identities/any(c:c/issuerAssignedId eq 'xxx@Stuff .com' and c/issuer eq 'xxx.onmicrosoft.com')
In the response, you will get issueAssignedId along with other user details which are mentioned in the query.
Hope this will help.
Thanks,
Shweta
----------------------------------------------------------
Please remember to "Accept Answer" if answer helped you.