Cake\ElasticSearch\Query::offset PHP Method

offset() public method

Sets the number of records that should be skipped from the original result set This is commonly used for paginating large results. Accepts an integer.
public offset ( integer $num )
$num integer The number of records to be skipped
    public function offset($num)
    {
        $this->_parts['offset'] = (int) $num;
        return $this;
    }