python (12.9k questions)
javascript (9.2k questions)
reactjs (4.7k questions)
java (4.2k questions)
java (4.2k questions)
c# (3.5k questions)
c# (3.5k questions)
html (3.3k questions)
Questions about selecting data from NgRx store
@Component({
selector: 'app-user',
styleUrls: ['./user.component.css'],
template: `
<button (click)="clickSearch('some keyword')">Search</button>
<div *ngIf=&qu...
user2268244
Votes: 0
Answers: 1
How to ignore action spam in an effect
I am relatively new to ngrx and have a question that I could not find any answer for so far.
I have a component that updates the name property of an entity with a pessimistic approach, meaning that I ...

Pascal
Votes: 0
Answers: 1
Angular NGRX effects- map code block executed w/o waiting for HttpResponse
Created effect in NgRX as below, and expecting behavior as:
code in map block should be executed only if http response is successful
code in catchError block should be executed only if response is un...
user17893760
Votes: 0
Answers: 0
'Observable' is not assignable to type 'EffectResult'
I am working on a project that uses angular 12 and NGRX.
I get this error:
Error: src/app/auth/state/principal.effects.ts:17:30 - error TS2345: Argument of type '() => Observable<unknown>' is...
Michael
Votes: 0
Answers: 1