Apollo服务器:从Observable创建订阅解析器

时间:2019-02-27 03:20:05

标签: rxjs graphql-js apollo-server

在Apollo Server中,您似乎必须使用AsyncIterator来进行订阅解析程序:

const rootResolver = {
    Query: () => { ... },
    Mutation: () => { ... },
    Subscription: {
        commentAdded: {
          subscribe: () => pubsub.asyncIterator('commentAdded')
        }
    },
};

Source

我想知道是否有任何方法可以代替使用RXJS Observable或以某种方式将其转换为AsyncIterator?

0 个答案:

没有答案