We have a model which contains Observable's. It's basically a "proxied" graph database. An object in JavaScript is a vertex in remote graph database. Getting a value of a property, if not primitive, is done through Observable and a HTTP request.
How can I effectively render such model in Angular 2?
One thing I could try is a 1:1 copy of the model class, only with normal reference instead of Observable, and filling that on return.
Also, my case is that I need a property of the object returned by the observable. In this, statsFilesByTypeJavaPercent is the Observable:
Java {{technologiesStats?.statsFilesByTypeJavaPercent?.quantity}} %
So how do I consume it?