I have a static set of data, a list of countries, that are used on some components. This data is loaded upon the ngOnInit() of these components but I\'d like to
My answer is a variation from Hetty de Vries answer's.
If you simply want to retrieve the contents of the store without touching the effects you could do something similar to this:
this.store.select(state => state.producer.id).forEach( id => {
...
}
supposing that your store contains a producer object with an attribute id.