apollographql / graphql-subscriptions

:newspaper: A small module that implements GraphQL subscriptions for Node.js
MIT License
1.59k stars 133 forks source link

Fire Multiple Publishing #195

Open imakou opened 5 years ago

imakou commented 5 years ago

Hi,

Is it possible to fire multiple events at the same time by pubsub.publish

For example,

ctx.pubsub.publish(["event_1","event_2","event_3"], { TaskAdded: updatedTask });

It likes that pubsub.asyncIterator(["event_1","event_2"]) which accepts array as params.