From e29973a1701c87e774a107999de5eb10878b1742 Mon Sep 17 00:00:00 2001 From: ppetzold Date: Tue, 14 Mar 2023 22:21:05 +0100 Subject: [PATCH] fix: readme --- README.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/README.md b/README.md index e017dd2..b28ee43 100644 --- a/README.md +++ b/README.md @@ -267,6 +267,14 @@ const paginateConfig: PaginateConfig { * [#5670](https://github.com/typeorm/typeorm/issues/5670) */ paginationType: PaginationType.LIMIT_AND_OFFSET, + + /** + * Required: false + * Type: boolean + * Default: false + * Description: Load eager relations using TypeORM's eager property. + */ + loadEagerRelations: true } ```