Thanks for the new 3.0.0 release! I'm trying to use 3.0.0 now instead of the asyncIterator implementation in graphql-redis-subscriptions, in implementing redis subscriptions; however, the pubsubAsyncIterator class implemented here does not have an ability to pass options through from the constructor through to the underlying pubsub.subscribe call.
Could we add a third argument to the constructor of PubSubAsyncIterableIterator (and the associated asyncIterableIterator function in PubSubEngine) which passes options through to the underlying subscribe call? This would mirror the capabilities provided by subscribe.
Thanks for the new 3.0.0 release! I'm trying to use 3.0.0 now instead of the asyncIterator implementation in graphql-redis-subscriptions, in implementing redis subscriptions; however, the pubsubAsyncIterator class implemented here does not have an ability to pass options through from the constructor through to the underlying
pubsub.subscribe
call.Could we add a third argument to the constructor of
PubSubAsyncIterableIterator
(and the associatedasyncIterableIterator
function inPubSubEngine
) which passesoptions
through to the underlyingsubscribe
call? This would mirror the capabilities provided bysubscribe
.