Collection does not update on fetch collection

I have a view in supabase thatbim using in a datagrid.

Im having issues that the changes are not reflected in the datagrid even when the view updates. If i add a fetch collection in my workflow, the datagrid gets wiped and wont have any data until i press the manual update button in the editor. If i fetch the view(collection) in the data settings, i still wont get the updated data. Am i missing something?

Upload some screenshots of your workflows, etc. Hard to help without being able to see where issues might be. :slight_smile:

My solution for that issue was to create a Boolean variable and use it to control when the datagrid loads. In the workflow, after inserting the data, you set the variable to false and then back to true to force the datagrid to refresh with the new data without having to reload the page.

1 Like

I’ll try that, thanks :slight_smile: