Hi Team,
$limit 20 + $limit 10 => $limit 10 (minimum of two)
$skip 20 + $skip 10 => $skip 30 (sum of both)
Why does limit pick the least value between stages while skip sums up the value between stages ?
Hi Team,
$limit 20 + $limit 10 => $limit 10 (minimum of two)
$skip 20 + $skip 10 => $skip 30 (sum of both)
Why does limit pick the least value between stages while skip sums up the value between stages ?
Because it is the only way it make sense.