How to deactivate table refresh animation?

I need to run a query within a specific interval to make sure other functionalities work as expected. I'm also using this query to display information in a table. Is there a way of deactivating the refresh animation for a table?

The "dirty" way would be using a second identical query that isn't executed every other second. Is there any way around this?

Have you tried a JS transformer, just as simple as

var tbldata = {{regularRefreshingQuery.data}}

return tbldata

and running the table source as the {{transformer.value}}

1 Like

Yes this works, thanks!

2 Likes