Hi guys, am having issues with the subscription im...
# orm-help
s
Hi guys, am having issues with the subscription implementation
Copy code
static newLinkSubscribe(parent, args, context, info) {
    return context.db.subscription.link(
      { where: { mutation_in: ['CREATED'] } },
      info
    )
  }
I tried using the "where" filter for subscription using the Howtographql tutorial but it's not working instead if I pass in an empty object it works as shown below
Copy code
static newLinkSubscribe(parent, args, context, info) {
    return context.db.subscription.link(
      { },
      info
    )
  }
n
hey @Sannikay, we're currently working on a fix. You can track the progress here: https://github.com/graphcool/prisma/issues/1734
s
Thanks @nilan