Skips count rows per parent; batched pagination requires orderBy.
count
Relation<R, F> skip(int count) { if (count < 0) throw ArgumentError.value(count, 'count'); return copyQuery(queryState.copy(offset: count)); }