Ben Wilson

Results 158 comments of Ben Wilson

We'll leave it up until there are full examples just in case anyone else is also wondering.

@brbharath17 Hey there. It looks like it's working fine to me, that's what shows up until something publishes to the subscription.

As an aside, I think it will be best to handle generic help requests via slack or the forums. This issue is left open for reference until there is a...

Hey @brbharath17. Please take this to the elixir-lang slack or the forums. Github issues are not the place we want to support one on one questions or learning.

My main concern here is that I don't know how any of the Dataloader.Ecto callbacks could work. The `query` one for example wouldn't be able to use or return a...

This is a good idea :) Implementation is a bit tricky. You gotta do some projection to determine if there's only an id field AND you gotta determine if the...

This may be related to https://github.com/phoenixframework/phoenix/issues/3179

Chris' reply to this is helpful but not the full story, since Absinthe.Phoenix right now is written to expect you to do `use Absinthe.Phoenix.Endpoint` in your endpoint module. The code...

@sebastianseilund What order do you have things in your supervision tree? Have you considered using something like https://github.com/derekkraan/ranch_connection_drainer ? Ideally you don't keep routing traffic to a node that is...

Fair. I think the best option here would be to figure out a way to have the supervision tree look like this: ``` [ Pubsub, Absinthe.Subscription, Endpoint ] ``` Then...