Skip to content
This repository was archived by the owner on Sep 2, 2025. It is now read-only.
Merged
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,7 @@ db.sqlite
data.db
.idea
.nyc_output
.vscode/settings.json

# Tern
.tern-port
Expand Down
6 changes: 5 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -180,7 +180,11 @@ Note that all this eager related options are optional.
[`withGraphFetched`](https://vincit.github.io/objection.js/api/query-builder/eager-methods.html#withgraphfetched) documentation.

- **`$joinRelation`** - filter based on a relation's field. use with `$eager` to also fetch the relation. See
[`joinRelated`](https://vincit.github.io/objection.js/api/query-builder/join-methods.html#joinrelated)
[`joinRelated`](https://vincit.github.io/objection.js/api/query-builder/join-methods.html#joinrelated)
documentation.

- **`$leftJoinRelation`** - filter based on a relation's field using LEFT JOIN. use with `$eager` to also fetch the relation. See
[`leftJoinRelated`](https://vincit.github.io/objection.js/api/query-builder/join-methods.html#leftjoinrelated)
documentation.

- **`$joinEager`** - filter based on a relation's field. See
Expand Down
Loading