Sha256: 397e6cbe7cde5dbb86527ec7718f0f74184390429501f3672396ccc65890eec7
Contents?: true
Size: 585 Bytes
Versions: 12
Compression:
Stored size: 585 Bytes
Contents
# frozen_string_literal: true class Blacklight::Solr::Response::Group include Blacklight::Solr::Response::PaginationMethods attr_reader :key, :group, :response def initialize key, group, response @key = key @group = group @response = response end def doclist group[:doclist] end # short cut to response['numFound'] def total doclist[:numFound].to_s.to_i end def start doclist[:start].to_s.to_i end def docs doclist[:docs].map {|doc| SolrDocument.new(doc, response)} end def field response.group_field end end
Version data entries
12 entries across 12 versions & 1 rubygems