You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since isNonNullType uses instanceof internally, I assume the use of different graphql packages is the culprit. I only have 1 graphql installed in my project, so I was wondering if it's because of #252 or #257?
The text was updated successfully, but these errors were encountered:
Hi there! When trying to upgrade, I kept getting the following error:
While debugging, I saw that
isNonNullType
was returningfalse
when it shouldn't forString!
in the following compiled code.Digging deeper, I saw it was because
import_graphql
was coming from the following webpackified package:whereas e.g. definitions were coming from a different ESM package, which i didn't install, but I believe is used internally by this package
Since
isNonNullType
usesinstanceof
internally, I assume the use of different graphql packages is the culprit. I only have 1 graphql installed in my project, so I was wondering if it's because of #252 or #257?The text was updated successfully, but these errors were encountered: