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
Following the official documentation and the rest of the tutorial, queries and mutations are defined with the first letter in uppercase (PascalCase). However, in this part of the tutorial the mutation Login is defined lowercase (I see that in the final version of the tutorial this is corrected):
The corresponding generated file (pages/__generated__/login.ts), Login type appears as well in lowercase but the related code is assuming they are in uppercase, throwing errors:
Following the official documentation and the rest of the tutorial, queries and mutations are defined with the first letter in uppercase (PascalCase). However, in this part of the tutorial the mutation
Login
is defined lowercase (I see that in the final version of the tutorial this is corrected):The corresponding generated file (
pages/__generated__/login.ts
),Login
type appears as well in lowercase but the related code is assuming they are in uppercase, throwing errors:The mutation
Login
in the integration tests (server/src/__tests__/integration.js
) is also defined in lowercase:The text was updated successfully, but these errors were encountered: