You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Sep 2, 2025. It is now read-only.
Please refer to the [Feathers database adapter documentation](http://docs.feathersjs.com/databases/readme.html) for more details or directly at:
19
+
Please refer to the [Feathers database adapter documentation](https://docs.feathersjs.com/databases/readme.html) for more details or directly at:
20
20
21
-
-[Extending](http://docs.feathersjs.com/databases/extending.html) - How to extend a database adapter
22
-
-[Pagination and Sorting](http://docs.feathersjs.com/databases/pagination.html) - How to use pagination and sorting for the database adapter
23
-
-[Querying](http://docs.feathersjs.com/databases/querying.html) - The common adapter querying mechanism
21
+
-[Extending](https://docs.feathersjs.com/databases/extending.html) - How to extend a database adapter
22
+
-[Pagination and Sorting](https://docs.feathersjs.com/databases/pagination.html) - How to use pagination and sorting for the database adapter
23
+
-[Querying](https://docs.feathersjs.com/databases/querying.html) - The common adapter querying mechanism
24
24
25
-
Refer to the official [Objection.js documention](http://vincit.github.io/objection.js).
25
+
Refer to the official [Objection.js documention](https://vincit.github.io/objection.js).
26
26
27
27
It works almost the same as the [Knex
28
28
service](https://github.com/feathersjs/feathers-knex) adapter, except it has all
@@ -69,25 +69,25 @@ Feathers services, instead of relying with hooks.
69
69
Note that all this eager related options are optional.
70
70
71
71
* **`allowedEager`** - relation expression to limit the allowed eager queries in
72
-
the service. Defaults to `'[]'`, meaning no eager queries allowed. See [`allowEager`](http://vincit.github.io/objection.js/#alloweager) documentation.
72
+
the service. Defaults to `'[]'`, meaning no eager queries allowed. See [`allowEager`](https://vincit.github.io/objection.js/#alloweager) documentation.
73
73
* **`eagerFilters`** - option to impose compulsory eager filter. It takes an
74
74
object or array of objects with the following properties:
75
75
* `expression` - the relation expression that the filter will be applied.
76
76
* `filter` - the filter function.
77
-
It uses [`filterEager`](http://vincit.github.io/objection.js/#filtereager) internally.
77
+
It uses [`filterEager`](https://vincit.github.io/objection.js/#filtereager) internally.
78
78
* **`namedEagerFilters`** - object containing named eager filter functions.
79
79
Filter is opt-in via `$eager` parameter.
80
80
81
81
#### Service call parameters
82
82
83
83
* **`$eager`** - parameter to eager load relations defined in `namedEagerFilters`. See
0 commit comments