
I am working on creating a flow that uses the Dataverse get a row by id, and have found that the module only returns fields that have values. The missing values are then causing issues further down the flow, and triggering errors. Is there a way to force all fields to be included?
Hi @ppibeauty ,
You can use the character '?' to avoid errors.
Sample:
Use body('action')?['Column Name']
instead of
body('action')['Column Name']
Best Regards,
Wearsky