
Hello Team,
I’ve built a Copilot agent for Teams, and from the agent topic I’m calling a flow. Inside the flow, I’m using the Dataverse – List Rows action to retrieve records using an OData filter.
we have used a loop in the flow to format(Transforming Json output to table form) the output. The flow timeout after 2 min when the record volume is 20-30. To resolved this, I have set Top Count = 10 in the Dataverse action. This is a workaround
Now I want to enable a “Show more” feature so that the user can request the next 10 records. For this, I planned to use @odata.nextLink and $skiptoken. However, the Dataverse action is not returning @odata.nextLink at all. The output only contains the data rows.
Here is my configuration:
Despite this, I still don’t receive @odata.nextLink in the response.
Can someone help me understand what might be wrong, or suggest an alternative approach to handle paging in Copilot + Dataverse flows?
Thank you!