Integrating GraphQL Server with Effect Workflow and Fiber Management
Hi folks. I'm working on hooking up GraphQL server into Effect workflow.
Here is my train of thought - GraphQL execution starts with
Next to it, in Yoga GQL server world, I'd also utilise plugin to interrupt fiber upon execution interrupt
Here is my train of thought - GraphQL execution starts with
context() call to resolve context all nested resolvers will be run with. During this call I wanna start new fiber and shove handle (RuntimeFiber?) into the context. Down the line, when actual resolver is hit, I'd grab handler from the context and run resolver effect on it.Next to it, in Yoga GQL server world, I'd also utilise plugin to interrupt fiber upon execution interrupt
