You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The current code erroneously uses thefields parameter of a query and adds them to the source_filter of a query. But fields and source_filter define different things. fields is used to return the values that are contained in the mapping or scripted or runtime fields whereas source_filter is used to return the specified the given entries from the _source of the document.
This needs to be fixed. This might break code that relies on fields being interpreted as source_filter included fields.
The text was updated successfully, but these errors were encountered:
The current code erroneously uses the
fields
parameter of a query and adds them to thesource_filter
of a query. Butfields
andsource_filter
define different things.fields
is used to return the values that are contained in the mapping or scripted or runtime fields whereassource_filter
is used to return the specified the given entries from the_source
of the document.This needs to be fixed. This might break code that relies on fields being interpreted as source_filter included fields.
The text was updated successfully, but these errors were encountered: