Questions tagged [absinthe-subscription]
3 questions
5
votes
0 answers
Authorization graphql subscriptions with elixir and absinthe using cookies
I'm trying make authorization/authentication graphql subscriptions with elixir and absinthe using cookies and I used the follow link:
https://nts.strzibny.name/graphql-subscriptions-with-elixir-and-absinth/
I'm trying authenticate the user for…

Nuno_Coletiv
- 367
- 3
- 16
1
vote
2 answers
How to do graphql subscriptions with Absinthe (Elixir) and Urql?
My idea was to build a client app using react and urql and a graphql api using elixir and absinthe but at the moment it looks as if these don't really play that well together.
Is there a way to actually use the Absinthe subscriptions with any other…

Gulliver
- 103
- 1
- 8
0
votes
1 answer
Why my Absinthe GraphQL Subscription doesn't work?
My Schema:
subscription do
@desc "Subscribe to drawing change"
field :drawing_change, :drawing do
# arg(:drawing_id, non_null(:id))
config(fn _args, _resolution ->
{:ok, topic: "*"}
end)
end
end
When I…

Mr H
- 5,254
- 3
- 38
- 43