Hi @emoya, Let me see if I understood correctly. I see in this method you are executing an already created query (otherwise you would not use cf.getVisualization()). This query dummy
is affected at some point with filters. Then you execute the query again and the data being returned has doesn’t include the filters?
Can you try the following: When the filters are applied, please open the developer tools and run cf.getVisualization('dummy').get('config').filters
and check if this is empty. In case it is, the query most have been overwritten at some point. Otherwise it should show the filters.
To go beyond, try running the entire code from the console:
cf.getVisualization('dummy')
.set('offset', 10)
.limit(100)
.execute().then(response => console.log(response.data))
If the data is filtered then the query in your getGridData
is not the same (probably been overwritten somewhere else loosing the filters).