Method: Elasticsearch::Model::Response::Pagination::Kaminari#offset_value
- Defined in:
- lib/elasticsearch/model/response/pagination/kaminari.rb
#offset_value ⇒ Object
Returns the current “offset” (‘from`) value
74 75 76 77 78 79 80 81 |
# File 'lib/elasticsearch/model/response/pagination/kaminari.rb', line 74 def offset_value case when search.definition[:from] search.definition[:from] else 0 end end |