From 5dcabcd314477336eaa4577ecfc6420153f92cea Mon Sep 17 00:00:00 2001 From: Stephen Haberman Date: Fri, 31 Mar 2023 10:03:06 -0500 Subject: [PATCH] docs: Fix links. --- docs/docs/getting-started/tour.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docs/getting-started/tour.md b/docs/docs/getting-started/tour.md index cb9590eec..5ceb8939f 100644 --- a/docs/docs/getting-started/tour.md +++ b/docs/docs/getting-started/tour.md @@ -78,7 +78,7 @@ class Author extends AuthorCodegen { const prolificAuthors = await em.find(Author, { numberOfBooks: { gt: 100 } }); ``` -You write validation rules that can be per-field, per-entity or even _reactive across multiple entities_, i.e. in `Author.ts` (see [Validation Rules](../features/validation-rules.md)): +You write validation rules that can be per-field, per-entity or even _reactive across multiple entities_, i.e. in `Author.ts` (see [Validation Rules](../modeling/validation-rules.md)): ```typescript import { authorConfig as config } from "./entities"; @@ -123,7 +123,7 @@ loaded.books.get.forEach((book) => { }) ``` -Loading any references or collections within the domain model is guaranteed to be N+1 safe, regardless of where the `populate` / `load` calls happen within the code-path (see [Avoiding N+1 Queries](../goals/n-plus-one-queries.md)). +Loading any references or collections within the domain model is guaranteed to be N+1 safe, regardless of where the `populate` / `load` calls happen within the code-path (see [Avoiding N+1 Queries](../goals/avoiding-n-plus-1s.md)). To find entities, you can use an ergonomic `em.find` API that combines joins and conditions in a single "join literal" (see [Finding Entities](../features/queries-find.md)):