This repository was archived by the owner on Jul 10, 2019. It is now read-only.

Description
If I try to execute an operation using execute on an apollo link state, resolver has no cache. Why ? :
function testLink = async function() {
const result = await makePromise(
execute(linkState, {
query: SET_VIDEO_STATE,
variables: {
currentTime: 2000
}
})
);
};
// resolver :
setVideoState: (_, variables, { cache, getCacheKey }) => {
// cache is undefined.
}