update README

This commit is contained in:
ppetzold 2023-03-17 21:42:53 +01:00
parent c42fde65c3
commit 8b9c32247f

View File

@ -231,6 +231,15 @@ const paginateConfig: PaginateConfig<CatEntity> {
*/
relations: [],
/**
* Required: false
* Type: boolean
* Default: false
* Description: Load eager relations using TypeORM's eager property.
* Only works if `relations` is not defined.
*/
loadEagerRelations: true
/**
* Required: false
* Type: boolean
@ -253,14 +262,6 @@ const paginateConfig: PaginateConfig<CatEntity> {
* Description: Overrides the origin of absolute resource links if set.
*/
origin: 'http://cats.example',
/**
* Required: false
* Type: boolean
* Default: false
* Description: Load eager relations using TypeORM's eager property.
*/
loadEagerRelations: true
}
```