diff --git a/docs/guide/apollo/README.md b/docs/guide/apollo/README.md index 8713aa6..7673eb4 100644 --- a/docs/guide/apollo/README.md +++ b/docs/guide/apollo/README.md @@ -10,7 +10,7 @@ new Vue({ }) ``` -You can access the [apollo-client](https://www.apollographql.com/docs/react/) instances with `this.$apollo.provider.defaultClient` or `this.$apollo.provider.clients.` (for [Multiple clients](#multiple-clients)) in all your vue components. +You can access the [apollo-client](https://www.apollographql.com/docs/react/) instances with `this.$apollo.provider.defaultClient` or `this.$apollo.provider.clients.` (for [Multiple clients](../multiple-clients.md)) in all your vue components. ## Queries diff --git a/docs/guide/apollo/subscriptions.md b/docs/guide/apollo/subscriptions.md index f262251..da9a7bf 100644 --- a/docs/guide/apollo/subscriptions.md +++ b/docs/guide/apollo/subscriptions.md @@ -213,7 +213,7 @@ apollo: { You can then access the subscription with `this.$apollo.subscriptions.`. :::tip -Just like for queries, you can declare the subscription [with a function](#option-function), and you can declare the `query` option [with a reactive function](#reactive-query-definition). +Just like for queries, you can declare the subscription [with a function](./queries.md#option-function), and you can declare the `query` option [with a reactive function](./queries.md#reactive-query-definition). ::: ## Skipping the subscription