> For the complete documentation index, see [llms.txt](https://prisma-util.gitbook.io/stable/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://prisma-util.gitbook.io/stable/api-documentation/configuration-reference/take.md).

# take

{% hint style="info" %}

#### Experimental Feature

This configuration entry is related to an Experimental (Optional) feature called Static Take. Before you start to configure this section, make sure to read the page specific for this feature (accessible [here](/stable/optional-features/runtime-modules/static-take.md)) and [this](/stable/concepts/experimental-features.md) page that explains how to enable Experimental Features.
{% endhint %}

### Type: [AbstractModelTake](/stable/api-documentation/types-and-objects/abstract-model-take.md)

<details>

<summary>Versioning History</summary>

**API Version v2.0.0** - Introduced `take` configuration option.

</details>

Configure the default take amount for each model or for all models. To configure the take amounts, add the following lines to your configuration file:

{% code title="prisma-util.config.mjs" %}

```javascript
export default {
    // Other configuration lines
    take: {
        $global: 20,
        "Model": 35
    }
};
```

{% endcode %}
