Hi, Could you tell me how to fix this error? ``` {...
# orm-help
h
Hi, Could you tell me how to fix this error?
Copy code
{
“error”: {
“message”: “Subscription field must return Async Iterable. Received: undefined”
}
}
Copy code
//schema.graphgl
                type Subscription {
                      course(where: CourseSubscriptionWhereInput): CourseSubscriptionPayload
                    }
Copy code
//resolver
  const {forwardTo} = require('prisma-binding);
    Subscription: {
        course: forwardTo('db')
      }
e
Hi, we are gonna need more information to fix this. In the meantime, have you verified that "prisma-binding" is installed ?