I need to update the filter values of embedded dashboards. I’m utilizing the ‘updateFilterGroups’ function for this purpose.
Referred From - Build custom, interactive dashboards using new runtime capabilities in QuickSight's Embedding SDK.
But the filter itself isn’t loading any values.
const updatedCategoryFilter = {
...existingCategoryFilterGroup,
Filters: [
{
CategoryFilter: {
...existingCategoryFilterGroup.Filters[0].CategoryFilter,
Configuration: {
CustomFilterListConfiguration: {
NullOption: "NON_NULLS_ONLY",
MatchOperator: "CONTAINS",
CategoryValues: ["Pickup"],
},
},
},
},
],
};