feathersjs-ecosystem / feathers-reactive

Reactive API extensions for Feathers services
MIT License
216 stars 37 forks source link

get with query change dosn't work #127

Closed dottodot closed 5 years ago

dottodot commented 6 years ago

If I do a get with a query i.e

this.service
      .watch()
      .get(id, {
        query: query
      })

then I want to update my view using a new query the request doesn't get sent. It only updates if I change the id. Why is this and how can I fix it?

daffl commented 6 years ago

Because the query for get requests doesn't matter. A single entry is always identified by id and the resulting stream will send updates every time the entry with that id has been updated, patched, created or removed.

stale[bot] commented 5 years ago

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Apologies if the issue could not be resolved. FeathersJS ecosystem modules are community maintained so there may be a chance that there isn't anybody available to address the issue at the moment. For other ways to get help see here.