Hacktoberfest 2026:メンテナが10月に向けて印を付けた、オープンで初心者向けの issue。 Hacktoberfest の issue を見る

Login __generated__ file with mutation defined in lowercase is causing errors

オープン
#179 コメント 0 件 リアクション 0 件 担当者 0 名 GitHub で見る

まだ誰も着手していません。

評価

難易度
2/5
見積もり時間
1〜3時間
初心者へのやさしさ
55/100
issue の種類
ドキュメント
明瞭さ
明確に書かれている
活発さ
停滞
技術スタック
graphql, javascript, typescript
領域
documentation

調査の方向性

issue でリンクされている mutation セクション、生成された pages/generated/login.ts ファイル、および server/src/tests/integration.js を確認してください。mutation の命名と生成された型参照で、全体を通して同じ大文字・小文字が使われていることを確認してください。チュートリアルのコードと統合テストは一貫しており、報告されたエラーを artık発生させないようにしてください。

索引モデルが issue の本文から書いたものです。

説明

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):

export const LOGIN_USER = gql`
  mutation login($email: String!) {
    login(email: $email)
  }
`;

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:

const [login, { loading, error }] = useMutation<
  LoginTypes.Login,
  LoginTypes.LoginVariables
>(LOGIN_USER);

The mutation Login in the integration tests (server/src/__tests__/integration.js) is also defined in lowercase:

const LOGIN = gql`
  mutation login($email: String!) {
    login(email: $email)
  }
`;
主要言語
TypeScript
スター
1.2k
フォーク
808
PR マージ指標
30日以内にマージされた PR はありません

コントリビューションガイド

このリポジトリのコントリビューションガイドは索引されていません

はじめの一歩

  1. issue を最後まで読み、次にプロジェクトのコントリビューションガイドを読みます。
  2. 着手することを issue にコメントします — 二人が同じ作業をするのを防げます。
  3. リポジトリをフォークし、ブランチを切って変更します。
  4. issue 番号を参照したプルリクエストを送ります。

apollographql/fullstack-tutorial のほかの issue

apollographql/fullstack-tutorial の issue をすべて見る

似ている issue

TypeScript の issue をもっと見る

新しい issue をメールで受け取る

初心者向けの GitHub issue を短くまとめたダイジェスト。