datahub/wherehows-data-model/ELASTICSEARCH/comment_query_template.json
2017-11-02 21:51:31 -07:00

26 lines
402 B
JSON

{
"bool": {
"should": [
{
"has_child": {
"type": "comment",
"query": {
"match": {
"text": "$VALUE"
}
}
}
},
{
"has_child": {
"type": "field",
"query": {
"match": {
"comments": "$VALUE"
}
}
}
}
]
}
}