> ## Documentation Index
> Fetch the complete documentation index at: https://docs.omni.co/llms.txt
> Use this file to discover all available pages before exploring further.

# default_row_limit

> Sets the default row limit for new queries within the model.

When set, the default row limit will be applied to topic-based queries and queries built from **All Views and Fields** that are created **after** the limit is defined. If not set, the system default of 1,000 rows is used.

Individual topics can override the model-level setting with their own [`default_row_limit`](/modeling/topics/parameters/default-row-limit) value.

## Syntax

```yaml theme={null}
default_row_limit: number
```

## Properties

<ParamField path="default_row_limit" type="integer">
  The default number of rows to return for new queries. Must be between 1 and 50,000.
</ParamField>

## Examples

```yaml title="Set default row limit to 5,000" theme={null}
default_row_limit: 5000
```
