Class: Sunspot::Query::QueryFacet
- Inherits:
-
Connective::Conjunction
- Object
- Connective::Abstract
- Connective::Conjunction
- Sunspot::Query::QueryFacet
- Defined in:
- lib/sunspot/query/query_facet.rb
Instance Method Summary collapse
Methods inherited from Connective::Conjunction
Methods inherited from Connective::Abstract
#add_component, #add_conjunction, #add_disjunction, #add_negated_restriction, #add_negated_shorthand_restriction, #add_positive_restriction, #add_positive_shorthand_restriction, #add_restriction, #add_shorthand_restriction, #initialize, #negate, #negated?, #to_boolean_phrase
Methods included from Filter
Constructor Details
This class inherits a constructor from Sunspot::Query::Connective::Abstract
Instance Method Details
#to_params ⇒ Object
4 5 6 7 8 9 10 11 12 13 |
# File 'lib/sunspot/query/query_facet.rb', line 4 def to_params if @components.empty? {} else { :facet => 'true', :"facet.query" => to_boolean_phrase } end end |