Method: Sunspot::Query::Pagination#to_params
- Defined in:
- lib/sunspot/query/pagination.rb
#to_params ⇒ Object
15 16 17 18 19 20 21 |
# File 'lib/sunspot/query/pagination.rb', line 15 def to_params if @cursor { :cursorMark => @cursor, :rows => rows } else { :start => start, :rows => rows } end end |