How to define two word in spacing

Hi team,

below is my code:

"query": {  
      "constant_score" : {
           "filter" : {
            "bool": {
                "must": [
              {
                 "terms": {"stkno" : ["Net Asset","asset combine"]}}, 
     { "range": { "CDate": {  "gte": "2015-01-01" ,  "lte": "2017-06-03T23:59:59"  } } } ]
           
        }}}}

Please kindly advice if my word is : Net Asset and Asset combine, use in Must condition,
if "Asset combine" not in the elasticsearch and "New Asset" in the elasticsearch, using Must condition so all indices can't search?

how to do i want find the word if ones of them inside elasticsearch?
Cause it can't find "Net Asset" exactly word when i use should condition.

Thanks

This topic was automatically closed 28 days after the last reply. New replies are no longer allowed.