You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have a specific OData endpoint that involves a nested object and nested objects are not supported by the DW integration framework currently which means that there is now way to retrieve the data using DW.
I have a specific OData endpoint that involves a nested object and nested objects are not supported by the DW integration framework currently which means that there is now way to retrieve the data using DW.
In this example the 'members' list is an extension of 'groups' and is not part of the metadata/schema.
Endpoint: https://graph.microsoft.com/v1.0/**groups**/11111111-aaaa-2222-bbbb/**members**
Example Data:
{
"@odata.context": "https://graph.microsoft.com/v1.0/$metadata#directoryObjects",
"value": [
{
"@odata.type": "#microsoft.graph.user",
"id": "11111111-aaaa-2222-bbbb-333333333333",
"businessPhones": [
"1234"
],
"displayName": "John Doe",
"givenName": "John",
"jobTitle": "Customer Support Supervisor",
"mail": "[email protected]",
"mobilePhone": "+4512345678",
"officeLocation": null,
"preferredLanguage": null,
"surname": "Doe",
"userPrincipalName": "[email protected]"
}
]
}
Please provide a way for us to be able to use this type of endpoint
The text was updated successfully, but these errors were encountered: