> ## 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 - Topics

> Sets the default row limit for new queries using the topic.

Sets the default row limit for new queries using the topic. When set, the default row limit will be applied to queries that are created **after** the limit is defined.

If a model-level default row limit isn't defined, the system default of 1,000 will be used instead.

<Warning>
  If defined, this parameter will override the model-level [`default_row_limit`](/modeling/models/default-row-limit) parameter.
</Warning>

## 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 using this topic. Must be between 1 and 50,000.
</ParamField>

## Examples

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