that's how my subscription look like: ``` pers...
# orm-help
g
that's how my subscription look like:
Copy code
personDeleted: {
      subscribe: (parent, args, context, info) => {
        return context.prisma.subscription.person({ where: { mutation_in: ['DELETED'] } }, info);
      },
    },
Copy code
personDeleted: PersonSubscriptionPayload!