Instead of using the match_phrase query here. I would use the terms query as shown in the link to the other question you provided.
Like this:
{
"query": {
"terms": {
"XYZ": [ "a", "b"],
}
}
}
@Luca_Belluccini Can you provide insight into using signals in Vega to create on-click events?