How can I have elasticsearch query return results without _ internal fields such as _index, _type?
Reason: For several pages I use AJAX call to get results rather than render the entire webpage on server. But exposing _index & _type internal fields for every document is not only redundant (bandwidth), its also exposing the index and type names (security issue).
Please help!