Seeking Advice on Data Massaging with Effect in TypeScript
Hey there
,
I have a data massaging scenario that is pretty common, yet troubles me with how to implement it correctly in Effect. Sample code below
In this scenario, I'm getting an array of
Obviously, that won't fly
Could anyone help on what's the correct way to do this type of data massaging in Effect? Many thanks!
I have a data massaging scenario that is pretty common, yet troubles me with how to implement it correctly in Effect. Sample code below
In this scenario, I'm getting an array of
Places wrapped in an effect, filtering a few entries, and then augmenting in each Place a computed property that's also wrapped in an Effect. What this ends up serialized as JSON, is an array of objects where the photos property is still an effect. Obviously, that won't fly
