The problem is that i still want to wait for a specific request made by the lazy query. ```js // at my store: const { load, loading, error, result } = useLazyQuery() // inside the component: const data = await load() ``` Because `load` doesn't return the current request promise, many reactive variables needed to be watched unwillingly. ### The suggested solution `load()` should return the promise to the current request. also every other fetching function like `rerun` etc.