-
Hi, I am starting to use ReScriptRelay. Here is a basic example of what I am doing: /* src/pages/PageAuthSignup.res */
module Query = %relay(`
query PageAuthSignupUserQuery {
users {
id
email
}
}
`) And the error I got is
I respected the naming convention so I don't get what means the error. FYI, I am using Vscode with appropriate plugins, Next.js, Relay, ReScript (obviously) and have properly configured relay with the schema retrieved using Any help is appreciated ! |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Using |
Beta Was this translation helpful? Give feedback.
Using
rescript-relay-compiler
CLI helped me to discover new errors that didn't show up in Vscode. In my case: I didn't createdartifactDirectory
.Creating the folder helped to have code generated properly.