From 4e945c75d9e61adae439eea686e75e0dd44cf48b Mon Sep 17 00:00:00 2001 From: Guillaume Chau Date: Mon, 30 Sep 2019 12:13:03 +0200 Subject: [PATCH] docs: note about skip becoming false --- docs/guide/apollo/queries.md | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/guide/apollo/queries.md b/docs/guide/apollo/queries.md index 8761611..e9be85d 100644 --- a/docs/guide/apollo/queries.md +++ b/docs/guide/apollo/queries.md @@ -359,6 +359,8 @@ You can also access the query directly and set the `skip` property: this.$apollo.queries.tags.skip = true ``` +If the query `skip` becomes `false`, the query will automatically execute again. + ## Reactive Query Example Here is a reactive query example using polling: