Describe the bug
The value of result is undefined while a refetch occurs after a variable update.
const variables = ref({
id: props.id,
sort: sort.value,
group: group.value,
});
const { result, error } = useQuery(searchQuery, () => variables);
Expected behavior
In versions before beta-2 did not set result to undefined during a refetch.
Versions
vue: 3.3.4
vue-apollo: ^4.0.0-beta.1
@apollo/client: 3.7.15