GraphQL: Subscription not firing when mutation run
问题 So, I'm testing subscriptions on Graphcool and would appreciate some clarification on how exactly they work. I have a one to many relationship from Posts on Comments: Schema type Posts { caption: String! comments: [Comments!]! @relation(name: "PostsOnComments") createdAt: DateTime! displaysrc: String! id: ID! likes: Int updatedAt: DateTime! } type Comments { createdAt: DateTime! id: ID! posts: Posts @relation(name: "PostsOnComments") text: String! updatedAt: DateTime! user: String! } The