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
After some digging, I've confirmed that the bad path is indeed present in the GraphQLCache for the type.
Supposedly the uri is wrong when caching the schema (I wasn't able to debug at that stage because I'm attaching too late to the process)
I suspect some vscode-uri.URI.parse(uri).toString() should use vscode-uri.URI.parse(uri).fsPath instead? but my initial attempt failed miserably and I'm a little out of my comfort zone at this point
The text was updated successfully, but these errors were encountered:
Original fix #1715
Regression from #2072
Related graphql/vscode-graphql#254
After some digging, I've confirmed that the bad path is indeed present in the GraphQLCache for the type.
Supposedly the uri is wrong when caching the schema (I wasn't able to debug at that stage because I'm attaching too late to the process)
graphiql/packages/graphql-language-service-server/src/MessageProcessor.ts
Lines 827 to 845 in 484c052
I suspect some
vscode-uri.URI.parse(uri).toString()
should usevscode-uri.URI.parse(uri).fsPath
instead? but my initial attempt failed miserably and I'm a little out of my comfort zone at this pointThe text was updated successfully, but these errors were encountered: