offset property
The number of documents to skip before returning the first result.
This applies after the constraints specified by the WHERE
, START AT
, &
END AT
but before the LIMIT
clause.
Requires:
- The value must be greater than or equal to zero if specified.
Implementation
@$pb.TagNumber(6)
$core.int get offset => $_getIZ(5);
Implementation
@$pb.TagNumber(6)
set offset($core.int v) {
$_setSignedInt32(5, v);
}