Subscriptions: Hi, looking for a bit of advice and...
# prisma-whats-new
h
Subscriptions: Hi, looking for a bit of advice and clarity. I'm using Prisma as the DB ORM, wrapped in my own GraphQL API. My clients will only call my API, no direct interaction with Prisma. I want to make use of subscriptions. Obviously the subscriptions need to go through my API. Prisma offers a comprehensive subscription API ( https://www.prismagraphql.com/docs/reference/prisma-api/subscriptions-aey0vohche ). How can I make use of this via my own API, given that the client will not be interfacing with Prisma. Is there an easy way of wrapping those subscriptions in my own API, any examples around?
I haven't tried it