From e6670c8baec8462b048df824ade7020a01e9f01f Mon Sep 17 00:00:00 2001 From: James Harrington Date: Mon, 29 Apr 2019 08:21:06 -0400 Subject: [PATCH] docs: Clarifying it must be a smart query (#590) It wasn't very clear that it i needed to attach the subscription to a smart query. --- docs/guide/apollo/subscriptions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/guide/apollo/subscriptions.md b/docs/guide/apollo/subscriptions.md index 44e8204..e73256a 100644 --- a/docs/guide/apollo/subscriptions.md +++ b/docs/guide/apollo/subscriptions.md @@ -61,7 +61,7 @@ Vue.use(VueApollo) ## Subscribe To More -If you need to update a query result from a subscription, the best way is using the `subscribeToMore` query method. It will create [Smart Subscriptions](../../api/smart-subscription.md) that are linked to the query. Just add a `subscribeToMore` to your query: +If you need to update a smart query result from a subscription, the best way is using the `subscribeToMore` smart query method. It will create [Smart Subscriptions](../../api/smart-subscription.md) that are linked to the smart query. Just add a `subscribeToMore` to your smart query: ```js apollo: {