Yup
Yup
Confirmed. After upgrading to [1.4.0-canary-068df71f](https://www.npmjs.com/package/@urql/vue/v/1.4.0-canary-068df71f) - Now memory stays at ~200MB. Edit: But when deployed on production - memory again grows. Probably I have another memory leak. lol
> I think this is intentional. The idea is not to expose any detail about an unexpected error. You can configure error masking on your own if you want to...
The idea is not to give consumer unmasked error, but to know that there is SOME error ar certain path. Basically to know that data is missing, because of error,...
I suspect its coming from here: https://github.com/n1ru4l/envelop/blob/main/packages/plugins/sentry/src/index.ts#L107C20-L107C20
Anything on this?
Shouldn't you do a check in the resolver ``` if(!$root->nullable) { return null; } return $this->dataLoader->load($root->nullable); ```