I was trying to access my Elasticsearch topic with API GET. please see below sample query.
https://localhost:9200/my_topic/_search?pretty&q=trade.tradeType:"Delta +1"
The problem with this search is that the result returned is not only trade type of "Delta +1", but also "Delta -1" and some others. Due to this output I receive, I suspect that "+" is actually treated as an wildcard in this search.
I would really appreciate if someone can let me know what I should modify in order to receive the correct search result.
Please note, below two attempts got zero results back for me, tradeType field is mapped as TEXT as primary type and Keyword as secondary type.
https://localhost:9200/my_topic/_search?pretty&q=trade.tradeType.keyword:"Delta +1"
https://localhost:9200/my_topic/_search?pretty&q=trade.tradeType.keyword:Delta +1