How do I specify AND operation in URI based query? I\'m looking for something like:
http://localhost:9200/_search?q=\"profiletype:student AND username:s*\"
You can try bellow line.
http://localhost:9200/_search?q=profiletype:student%20AND%20username:s* http://localhost:9200/_search?q=profiletype:student AND username:s*