Skip to content

Instantly share code, notes, and snippets.

@noahmatisoff
noahmatisoff / agg_query_builder.rb
Last active May 2, 2019 04:25
Filtered Aggregation + Query Builder
FILTERS = {
color: ['Black'],
make: ['Honda']
}.freeze
module Elasticsearch
MAPPING = { make: 'vehicle.make', color: 'vehicle.color' }.freeze
end
module Elasticsearch