2759825251
* * created vuepress docs * chore: upgrade deps * docs: patreon link * Docs changes
534 B
534 B
Skip all
You can disable all the queries for the component with skipAllQueries, all the subscriptions with skipAllSubscriptions and both with skipAll:
this.$apollo.skipAllQueries = true
this.$apollo.skipAllSubscriptions = true
this.$apollo.skipAll = true
You can also declare these properties in the apollo option of the component. They can be booleans:
apollo: {
$skipAll: true
}
Or reactive functions:
apollo: {
$skipAll () {
return this.foo === 42
}
}