diff --git a/docs/content/2.api/3.query/load.md b/docs/content/2.api/3.query/load.md index 8f4b6c7f2..cdf3bde3f 100644 --- a/docs/content/2.api/3.query/load.md +++ b/docs/content/2.api/3.query/load.md @@ -5,6 +5,8 @@ description: 'Eager load relations on the model.' # `load()` +Attaches relations to models that were **already retrieved** from the store. Use it when you fetched a collection without `with()` — e.g. because the relations weren't needed at that point, or the data comes from a cached query — and you want to add relations afterwards without re-running the whole query. This is the lazy-loading counterpart to eager loading with [`with()`](with). + ## Usage ````ts