We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c9ffb8f commit d339cb8Copy full SHA for d339cb8
src/smart-subscription.js
@@ -34,7 +34,7 @@ export default class SmartSubscription extends SmartApollo {
34
const ucb = apolloOptions.updateQuery && apolloOptions.updateQuery.bind(this.vm)
35
apolloOptions.updateQuery = (...args) => {
36
rcb(...args)
37
- ucb && ucb(...args)
+ return ucb && ucb(...args)
38
}
39
40
this.sub = this.options.linkedQuery.subscribeToMore(apolloOptions)
0 commit comments