Hi,
I wanted to know if it may be possible to use the recurrence trigger to accommodate the throttling limit of the Teams connector. I want to use a 5 min interval and use the last listed user from the dataverse table let say user x was the last user to receive the adaptive card, record that user in a table and then use the dataverse filter to start from the new - x+1 user and post the adaptive card from that onwards. Is something like this something possible to implement.
That is possible. All you need to do is store that user list in a table (which will be similar to a queue). The scheduled flow will query that table with "List Rows" action to get the first active row (e.g. user x) with the following parameters.
After posting the adaptive card, deactivate that record and the next instance of the flow run will pick up the x+1 user which is active.