-
Currently, this plugin does not allow you to search in individual fields, like this:
```js
app.service('users').find({
query: {
firstName: { $search: 's' },
lastName: { $search: 'art'…
arve0 updated
5 years ago
-
Basically, if one of the arguments (or the `params.query`) is an observable we should do what was suggested in https://github.com/feathersjs/feathers-reactive/issues/39 and `mergeMap` them into a sing…
daffl updated
6 years ago
-
https://www.youtube.com/watch?v=gmasnR_Cml0 (45:25)
> Automated testing is widely considered a best practice. After considerable effort, the industry now agrees that unit testing, system testing, u…
-
[resolved] Issue: On the mq-client service we need to add a user id entity like on the feathers-mongoose this.id, this is used to identify what field on the users service or what service your using on…
-
Relatively simple error, `cassanknex` is defined on the imported `feathers-cassandra` module. Just looking at the index.d.ts file, cassanknex just needs to be added to the `CassandraServiceOptions` in…
-
Performing a `app.service('tmp').getEntries()` (inherited from `feathers-memory`) before using any command internally executing `ready()` will result in a `TypeError` (`Cannot convert undefined or nul…
-
The package description says:
> IBM DB2 adapter for the Sails framework and Waterline ORM.
I'm wondering if using Waterline ORM without Sails is the minimum I need, or if Sails is really required.
-
### Steps to reproduce
I am using a composition to watch the total number of notifications from pagination-data:
```js
import { computed, ref, watch } from '@vue/composition-api';
import { use…
-
### Steps to reproduce
- Create a new Feathers App with a Service using a Database adapter that supports `$push` (e.g. mongodb, mongoose)
- Use `preventChanges(true, 'roles')` to prevent changes o…
-
I am stuck at securing AuthManagement service.
Taken from Jon Paul Miles article, Auth-Management service hooks:
```
exports.before = {
// …
create: [
common.iff(isAction('passwordChange', '…