You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The case looks good so far. Might you debug it with tap operator?
loadPostById$=createEffect(()=>this.actions$.pipe(ofType(PostActions.loadPostById),concatMap(({ id })=>this.postService.loadPostById(id).pipe(map((post)=>reduceGraph({data: post,selector: rootPost()})),// add it heretap(console.log),catchError((error)=>of(PostActions.loadPostByIdFailure({ error })))))));
I am using ngrx-entity-relationship in my angular project with @ngrx/store.
When I try to use reduceGraph inside an effect, no change occurs in the store, and when I check the devtool I see that the selector is not reaching
this is the effect code
this is the relationships code
This is what i see in devtool, it has no selector this is what i see in the devtool
The text was updated successfully, but these errors were encountered: