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
error in ./node_modules/graphql/language/printer.mjs
Module not found: Error: Can't resolve './visitor' in '/Users/Documents/htdocs/node_modules/graphql/language'
Did you mean 'visitor.mjs'?
in the graphql/language/index.mjs,
if I change this
export { visit, visitInParallel, visitWithTypeInfo, getVisitFn, BREAK } from './visitor';
to this
export { visit, visitInParallel, visitWithTypeInfo, getVisitFn, BREAK } from './visitor.mjs';
will work.
The text was updated successfully, but these errors were encountered:
I'm getting errors like this when compiling
in the
graphql/language/index.mjs
,if I change this
to this
will work.
The text was updated successfully, but these errors were encountered: