DEV Community

Discussion on: Angular Architecture Patterns and Best Practices (that help to scale)

Collapse
 
synga profile image
Gabriel Barreto

Great article!! One thing that is not clear to me, since it's unidirectional, can the core layers communicate with each other? The flow is only top to bottom and never left to right? So from a component i have to call a facade, then call an api service, then return data to the facade, call a service where i manipulate the data according to my business logic, then send it back to my facade and then update the state, right?