class GraphQL::Subscriptions::ActionCableSubscriptions

def deliver(subscription_id, result)

Send it to the specific stream where this client was waiting.
This subscription was re-evaluated.
def deliver(subscription_id, result)
  payload = { result: result.to_h, more: true }
  ActionCable.server.broadcast(SUBSCRIPTION_PREFIX + subscription_id, payload)
end