This repo and project is now archived
One of the most popular use-cases of GraphQL subscriptions is building applications that enable real-tim...
For further actions, you may consider blocking this person and/or reporting abuse
Thank for sharing.
In my case, I have a 1000 conversation in chat history and each conversation have multiple user
So If I using appsync as your post, I need to make 1000 subscription for each user (it's bad if I doing like that)
As I known that appsync is not support to subscription with array ID (onCreateMessage($messageConversationId: ID!))
So my solution for this case:
@dabit3 Could you help to advice me ? Is there any better solution for that used appsync ?
Thanks for the post! I have one question with the subscriptions in Amplify/Appsync. Will the subscription automatically reassigned if there is an network issue? Or do you have to do it manually, e.g. listen for navigator.onLine for example?
Hey @ Nader,
There are a couple errors, can you advise?
do you have a fix?
thank you,
Hello Thanks for your post!
I have one question.
For one conversation I can not subscribe only 10 message.
After 10 messages I cannot subscribe onMessageCreate event:(
Please let me know what I should fix
Thanks
Thanks for the post & the open source app, Nader 👍
Would you also add "opensource" tag by chance?
as it could help people following the tag 🙂
Hey Sung, great idea. Updating now :).
have you tested how aws appsync subscriptions can be used with vuex?
How do you generate messageConversationId? it seems to be a required field... what's the right way to generate this random id?
Would it need a lot of tweekeing to work with DataStore, for my usecase I dont need realtime functionality, the conversation functionality is all I really need, thanks anyone.