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
Even if you were importing correctly, it seems Nest.js doesn't support importing standard JavaScript modules anyway so you will probably run into that soon, see #332 (comment) . If you do run into that issue, please raise it with Nest.js not here.
Hello, I am building a nestjs project with typescript and graphql. I want to use graphql-upload in my project.
I install two package-
graphql-upload
@types/graphql-upload
After installing this packages. I import it-
import { GraphQLUpload, FileUpload } from "graphql-upload";
And my Mutation-
Here I am getting this error-
I see this issue alreay- #305
From this issue I am trying to use-
import GraphQLUpload from "graphql-upload/GraphQLUpload.js";
But here I am getting typescript type declaration error like this image-
How can I solve this issue.
The text was updated successfully, but these errors were encountered: