-
-
Save msonnabaum/b3950b42e5d9d8b37c2a to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
query: { | |
filtered: { | |
query: {match_all: {}}, | |
filter: { | |
and: ->{ | |
filters = [{or: prefix_arguments}] | |
if range_filters.any? | |
filters << {and: range_filters} | |
end | |
filters | |
}.call | |
} | |
} | |
}, | |
size: options[:size] || 99, | |
sort: sort_by | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment