最近 Apollo Client 发布了一个 websocket 订阅功能,但到目前为止,我只看到它通过在 componentWillMount 生命周期钩子中使用 subscribeToMore 启动查询来使用。
这是取自https://dev-blog.apollodata.com/tutorial-graphql-subscriptions-client-side-40e185e4be76#0a8f的示例
const messagesSubscription = gql`
subscription messageAdded($channelId: ID!) {
messageAdded(channelId: $channelId) {
id
text
}
}
`
componentWillMount() {
this.props.data.subscribeToMore({
document: messagesSubscription,
variables: {
channelId: this.props.match.params.channelId,
},
updateQuery: (prev, {subscriptionData}) => {
if (!subscriptionData.data) {
return prev;
}
const newMessage = subscriptionData.data.messageAdded;
// don't double add the message
if (!prev.channel.messages.find((msg) => msg.id === newMessage.id)) {
return Object.assign({}, prev, {
channel: Object.assign({}, prev.channel, {
messages: [...prev.channel.messages, newMessage],
})
});
} else {
return prev;
}
}
});
}
但是subscribeToMore是特定于 Apollo Client React 集成的。在VanillaJS中有一个 watchQuery,但它声明它不应该用于订阅。还有一个订阅可能是我正在寻找的,但没有记录。
有什么方法可以使用 Apollo GraphQL 客户端来处理订阅,而不需要在 React 组件中?