i am using kibana 6 dashboard to show visualization.
i have a elastic query like below and it need to pass in kibana dashbaord URL :
{
"query": {
"bool": {
"minimum_should_match": 1,
"should": [
{
"match_phrase": {
"jt_tax.keyword": "Partner"
}
},
{
"match_phrase": {
"jt_tax.keyword": "IT"
}
}
]
}
}
}
How to parse the ELASTIC QUERY into query parameter in Kibana dashboard Url?