I'm trying to create an html table that accesses info from a related entity in Dynamics 365
I've got a List Rows step with FetchXML and an Expand Query - Expand Query is relationshipname($select=description,name).
This goes to a Select step with Dynamic Content from the List Rows step - when I run a test the Inputs are showing this:
"a_140843db21f4ea11a81500224801c8ab.description": "SOME INFO1",
"a_140843db21f4ea11a81500224801c8ab.name": "SOME INFO2",
but the Outputs are showing
{
"Name": null,
"Description": null
}
where I would have expected to see SOME INFO2 as the name and SOME INFO1 as the description.
any ideas how I access this information from the inputs properly?
thanks,