I like to filter elasticsearch query results and retrieve only those that have a non-empty field
For example. giving the following data
{ total: 4912, max_score: 1, hits: [ { { _index: "gcba", _type: "bafici", _id: "5a93472b-5db4-4ff9-8c8a-d13158e72d5f-62", _score: 1, _source: { id_film: "23", title: "great film", } }, { _index: "gcba", _type: "bafici", _id: "2732fbf4-4e55-4794-8e98-e5d5fa6a0419-40", _score: 1, _source: { name: "conference", [...] } } }
I want to do something like
.../_search?from=1&size=100&q=id_film:'*'
to get only those elements with id_film value
opensas
source share