matthuhiggins/arelastic

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

Summary

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

      def specification_key
        'path'
      end
    end
  end
end