Runtime filters not working

Hi, we're trying to use a runtime filter for one of our pages that embeds a liveboard (using the React SDK LiveEmbed component) and having a problem. I'm passing the following to the runtimeFilters prop but it isn't causing any change to the liveboard.
[
{
columnName: 'True Open',
operator: RuntimeFilterOp.NOT_IN,
values: ['Bot', 'Likely a Bot'],
},
]
[
{
columnName: 'True Open',
operator: RuntimeFilterOp.NOT_IN,
values: ['Bot', 'Likely a Bot'],
},
]
When we add a filter field inside the liveboard directly, though, it works.
2 Replies
Justin Mathew
Justin Mathew5mo ago
hey @billsaysthis would it be possible to share any Errors in console or the HAR files with us along with a bit more of the code snipet you already posted , would be great if you can post the whole embed instance creation code Also instead of NOT_IN , can you try this { columnName: 'True Open', operator: RuntimeFilterOp.IN, values: ['Bot', 'Likely a Bot'], negate: true },
billsaysthis
billsaysthisOP4mo ago
There are no console errors to share. As for a HAR, sure, but which call is the one to share? Initial tests show that the altered object produces the desire results, thanks.

Did you find this page helpful?