Hey, I have a quick question about subscriptions. In my GraphQL server, I want to subscribe to any updates to a particular node.
I see that there is already a generated subscription method on Prisma that returns a promise of AsyncIterator<T>.
Can you please give me an example how I can hook into that subscription without sending it to the front end?
My use case is that I need to data sync to a legacy system and I would like to do it directly from the server. Is this possible?