Sha256: 771fdd21d843b8fe6fe58a1c7c5cb7942328347506e5b9d76a68e010f84fb0ef
Contents?: true
Size: 509 Bytes
Versions: 17
Compression:
Stored size: 509 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 attr_reader :label #:nodoc: def initialize(label, setup) #:nodoc: super(setup) @label = label end end end end
Version data entries
17 entries across 17 versions & 6 rubygems