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.
__typename
1 parent 5383b4e commit 47e0623Copy full SHA for 47e0623
README.md
@@ -1024,6 +1024,7 @@ export default {
1024
1025
return {
1026
tagsPage: {
1027
+ __typename: previousResult.tagsPage.__typename,
1028
// Merging the tag list
1029
tags: [...previousResult.tagsPage.tags, ...newTags],
1030
hasMore,
@@ -1037,6 +1038,8 @@ export default {
1037
1038
</script>
1039
```
1040
1041
+**Don't forget to include the `__typename` to the new result.**
1042
+
1043
## Skip all
1044
1045
You can disable all the queries for the component with `skipAllQueries`, all the subscriptions with `skipAllSubscriptions` and both with `skipAll`:
0 commit comments