I have the following Elasticsearch query.
GET /index1,index2/type1,type2/_search?q=programming
Let\'s say that I want to exclude inde
inde
You need to encode the + sign as it is considered space in URL string. See there is space in "resource.id": " index1",
+
space
"resource.id": " index1",
This will work
GET /%2Bindex1,-index2/type1,type2/_search?q=programming
Hope this helps!!