Tim Deschryver

Results 249 comments of Tim Deschryver

This lib doesn't depend on Angular - that's why the angular compilation mode I mentioned before doesn't matter. So yes, this lib is compatible with all versions of Angular.

Feel free to create a PR to update the (peer)dependencies

Should be resolved in v2.0.1 If that's not the case feel free to open a new issue.

I agree. The reasoning why I added `mutate` was so rx-query can refresh the data automatically (which was something I needed in a project). With react-query, the user has to...

That's a valid argument to have (that I didn't think of) 😅 `useMutation` can actually be a wrapper around `useQuery` with different settings (I believe that's also the case with...

Something like this: ```ts person$ = query('mutate-person', 1, (id) => this.http.get(`/persons/${id}`), { mutator: (data, { queryParameters }) => { return ( this.http .post(`/persons/${queryParameters}`, data) // 👇👇👇 .pipe( tap(() => refreshQuery('persons'))...

That's correct @tvildo

Feel free to open a PR which makes that possible if you want.

Hi @alexrutkov it's hard to follow here. What are you trying to do that resolves in this error? If I'm not mistaken, the `ENTITY_METADATA_TOKEN` token is missing from `EntityDataModuleWithoutEffects` ?

@brandonroberts I think that would be great, but maybe with that until we release v15?