Sha256: 04b54cf29153a663daaebb83e2028f9e7ab66b0fd1ff76acbeeb101f9c0dc279
Contents?: true
Size: 500 Bytes
Versions: 9
Compression:
Stored size: 500 Bytes
Contents
module Sunspot module Query # # QueryFacetRow objects encapsulate restrictions for a particular # QueryFacet. They also contain a label attribute, which is used as the # value for the search result's corresponding facet row object. # # See Query::Scope for the API provided. # class QueryFacetRow < Connective::Conjunction #:nodoc: attr_reader :label def initialize(label, setup) super(setup) @label = label end end end end
Version data entries
9 entries across 9 versions & 3 rubygems