Class: Chewy::Search::Parameters::None
- Includes:
- BoolStorage
- Defined in:
- lib/chewy/search/parameters/none.rb
Overview
Just a standard boolean storage, except the rendering logic.
Instance Attribute Summary
Attributes inherited from Storage
Instance Method Summary collapse
- 
  
    
      #render  ⇒ Object 
    
    
  
  
  
  
  
  
  
  
  
    Renders match_nonequery if the values is set to true.
Methods included from BoolStorage
Methods inherited from Storage
#==, #initialize, #merge!, #replace!, #update!
Constructor Details
This class inherits a constructor from Chewy::Search::Parameters::Storage
Instance Method Details
#render ⇒ Object
Renders match_none query if the values is set to true.
| 19 20 21 | # File 'lib/chewy/search/parameters/none.rb', line 19 def render {query: {match_none: {}}} if value.present? end |