Migrating from fp-ts: Recovering from Errors in a Pipeline
Hi there, I'm new to Effect and looking to migrate from fp-ts. One approach of using fp-ts I would rely on is to recover from errors but ultimately fail the overall pipeline. A contrived example:
I was hoping something would be similar with Effect but I couldn't find a solution using
I was hoping something would be similar with Effect but I couldn't find a solution using
Effect.catchTags or Effect.orElseFail since I get a nested promise and using Effect.runPromise doesn't help. Any suggestions would be much appreciated.