matthuhiggins/arelastic

View on GitHub
lib/arelastic/aggregations/children.rb

Summary

Maintainability
A
0 mins
Test Coverage
module Arelastic
  module Aggregations
    class Children < Arelastic::Aggregations::SpecialSingleBucket
      def aggregation_name
        'children'
      end

      def specification_key
        'type'
      end
    end
  end
end