Solved:
filters:
{
$and: [
...selectedTags.map((tag) => {
return {
product_tags: {
name: {
$eq: tag,
},
},
};
}),
],
}