mirror of
https://github.com/directus/directus.git
synced 2026-01-23 09:38:03 -05:00
472 B
472 B
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. :::