WARNING: Version 5.x has passed its EOL date.
This documentation is no longer being maintained and may be removed. If you are running this version, we strongly advise you to upgrade. For the latest information, see the current release documentation.
Fielddata Fields Usage
editFielddata Fields Usage
editAllows to return the field data representation of a field for each hit.
Fluent DSL example
edits => s .FielddataFields(fs => fs .Field(p => p.Name) .Field(p => p.LeadDeveloper) .Field(p => p.StartedOn) )
Object Initializer syntax example
editnew SearchRequest<Project> { FielddataFields = new string[] { "name", "leadDeveloper", "startedOn" } }
Example json output.
{ "fielddata_fields": [ "name", "leadDeveloper", "startedOn" ] }