bryantlikes

Results 2 comments of bryantlikes

Just use a Partial with the updater. ``` readonly updatePager = this.updater((state, partial: Partial) => ({ ...state, paginator: { ...state.paginator, ...partial }, })); ```

I have a fairly simple API so I just switched out the ApiResource for ApiScope and it worked fine. The [update blurb](https://identityserver4.readthedocs.io/en/latest/topics/resources.html?highlight=v4#migration-steps-to-v4) was helpful but it would be nice if...