diff --git a/packages/vue-apollo-composable/src/useQuery.ts b/packages/vue-apollo-composable/src/useQuery.ts index 9a9ca28..e9b70e4 100644 --- a/packages/vue-apollo-composable/src/useQuery.ts +++ b/packages/vue-apollo-composable/src/useQuery.ts @@ -228,14 +228,6 @@ export function useQueryImpl< startQuerySubscription() - if (!isServer && (currentOptions.value?.fetchPolicy !== 'no-cache' || currentOptions.value.notifyOnNetworkStatusChange)) { - const currentResult = query.value.getCurrentResult() - - if (!currentResult.loading || currentResult.partial || currentOptions.value?.notifyOnNetworkStatusChange) { - onNextResult(currentResult) - } - } - if (!isServer) { for (const item of subscribeToMoreItems) { addSubscribeToMore(item)