Hello world, I have a question concerning prisma s...
# orm-help
m
Hello world, I have a question concerning prisma subscriptions. I have a prisma backend with subscriptions implemented and and react native frontend. When I test my subscriptions in the playground, they work just as expected. (🙌 at Prisma for getting there, prisma gets more fun every day 🙂 ). When I subscribe with my frontend using
apollo-client
, the first time I subscribe, everthing works as expected. However, when I reload my frontend and resubscribe, the subscriptions dont get fired any more. Now, how does prisma handle resubscriptions, and what happens to the old subscriptions when my client app is killed and relaunches, i.e. the subscription is left hanging and another subscription is called from the same client? I know that this is deeply linked with apollo and the solution is probably located on the client side, however, I still thought I'd ask what happens on the server side. Glad about any input and experiences! Thanks!