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.
1 parent 6c07a47 commit fc98307Copy full SHA for fc98307
packages/vue-apollo-composable/src/useQuery.ts
@@ -228,14 +228,6 @@ export function useQueryImpl<
228
229
startQuerySubscription()
230
231
- if (!isServer && (currentOptions.value?.fetchPolicy !== 'no-cache' || currentOptions.value.notifyOnNetworkStatusChange)) {
232
- const currentResult = query.value.getCurrentResult()
233
-
234
- if (!currentResult.loading || currentResult.partial || currentOptions.value?.notifyOnNetworkStatusChange) {
235
- onNextResult(currentResult)
236
- }
237
238
239
if (!isServer) {
240
for (const item of subscribeToMoreItems) {
241
addSubscribeToMore(item)
0 commit comments