Dsl query to get the field names of an index

I'm unable to find a dsl query to get all the names of the fields of an index

You're trying to show all the fields in an index in Kibana, or you're just trying to query Elasticsearch and get that information (possibly outside of Kibana)?

In kibana, you can get the mapping of indices or types. Example :-
GET index/type/_mapping
This will show you all the properties of the type.

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