I have a vega visualization with an input signal (dropdown). I want to use this value to update the query to elastic and set the size parameter.
...
"signals": [
{ "name": "points", "value": 10,
"bind": {"input": "select", "options": [20,30,40,50]} },
]
...
"data": [{
"name": "data",
"url": {
"index": "testindex*",
"body": {
"size": {"signal": "points" } # Here I want to use the input from the signal
}
}
}]
How can I achieve this?