I have started integrating our code base to use Microsoft graph API, to read the contacts of outlook account as part of a new feature where the user can cherry pick the contacts available so that they can be imported.
For the account I am testing there are a total of 19 contacts available, but when I make the api call, I see only 10 contacts in total ( for sure this is not related to any paging ). Not really sure what is wrong with the contacts which I am not able to pull.
End point - https://graph.microsoft.com/v1.0/me/contacts
Scope - https://graph.microsoft.com/contacts.read
Fields -$select=givenName,middleName,surname,emailAddresses,mobilePhone,homeAddress,homePhones
Order By - $orderby=displayName asc
Wondering if any one ran into the issue, where they are not able to pull all the contacts available for the specific account. It would be great if anyone has any pointers for the issue that I am running into.