Files
directus/docs/reference/api/query/offset.md
2020-12-09 19:31:16 -05:00

12 lines
191 B
Markdown

# Offset
Using `offset` the first `offset` number of items can be skipped.
## Examples
```
# Returns a maximum of 10 items, but skips the first 3 items on the list
?offset=3
&limit=10
```