Craig Read
Craig Read
I had similar issues with `22.3.1`. Running the install with the `ERLANG_OPENSSL_PATH` environment variable fixed it. e.g. `ERLANG_OPENSSL_PATH="/usr/local/opt/openssl" asdf install erlang 22.3.1`
This is something that's been affecting us for quite some time, as we use Absinthe as a mobile BFF. We worked around it by explicitly using `Task.async_stream` in our resolvers...
> No this is not a good fit for Task.async_stream, there isn't an enumerable to feed to it. Instead we could use a combo of Task.yield + Task.shutdown. Thanks for...
> Likely this should be opt-in since it'd be a pretty meaningful behavior change for everyone - this behavior has been around for a long time... I aim to have...
I ended up with something that looks a little simpler. Not sure what I might be missing: ```elixir def call(%{state: :suspended} = res, {task, [{:fallback, fallback}]}), do: call(res, {task, [{:timeout,...
> It's not too complicated but there are decisions to be made about what kind of error to resolve & how to roll this out > > https://github.com/absinthe-graphql/absinthe/compare/master...binaryseed:async-batch-error-handling?expand=1 That's fairly...
> Yes, I don't know that a hard-coded fallback would be the best general solution here, I'm sure different use cases would call for more dynamic responses. In our implementation,...
I'm also interested in using this in production, and I'm currently spiking an integration with it. The spike is going well so far, except for some issues with localization. I...
I've only just started experiencing this, and I also found that manually fetching the schema wasn't working and I couldn't view the documentation. I've always had "Automatic Fetch" turned off...