debian-mirror-gitlab/elasticsearch-model/lib/elasticsearch/model/response/suggestions.rb

14 lines
241 B
Ruby
Raw Normal View History

2019-12-22 22:52:31 +05:30
module Elasticsearch
module Model
module Response
class Suggestions < Hashie::Mash
def terms
self.to_a.map { |k,v| v.first['options'] }.flatten.map {|v| v['text']}.uniq
end
end
end
end
end