platform
platform copied to clipboard
Selecting slices of the Global NgRx Store using strings
Which @ngrx/* package(s) are relevant/related to the feature request?
store
Information
The pluck RxJS operator is currently deprecated and is removed in RxJS v8.
Within NgRx we use it to be able to select a slice from the Global NgRx Store:
this.store.select('customers')
this.store.select('customers', 'orders)
With pluck going to be removed we should either:
- deprecate this
selectsignature (and eventually remove it) - or, write our own
pluckoperator
Describe any alternatives/workarounds you're currently using
/
I would be willing to submit a PR to fix this issue
- [ ] Yes
- [ ] No