mirror of
https://github.com/directus/directus.git
synced 2026-02-06 02:35:03 -05:00
* Allow formatted value display for numbers * Move the docs website into monorepo * Fix build * Tweak docs build setup * Fix tips, pull in images * Add syntax highlighting to docs * Restructure nav, add divider * Fix tips formatting * Add prettier config * Add editorconfig
21 lines
414 B
Markdown
21 lines
414 B
Markdown
# Limit
|
|
|
|
Using `limit` can be set the maximum number of items that will be returned. You can also use `-1` to return all items,
|
|
bypassing the default limits. The default limit is set to 100.
|
|
|
|
## Examples
|
|
|
|
```
|
|
# Returns a maximum of 10 items
|
|
?limit=10
|
|
|
|
# Returns an unlimited number of items
|
|
?limit=-1
|
|
```
|
|
|
|
::: warning
|
|
|
|
Fetching unlimited data may result in degraded performance or timeouts, use with caution.
|
|
|
|
:::
|