1. ホーム
  2. github

[解決済み] Github GraphQL OrderBy

2022-03-04 05:13:53

質問

GraphQLクエリを持っています。 なぜ動作しないのか理解できません。

{
  repositoryOwner(login: "Naramsim") {
    login
    repositories(first: 3, isFork: true, orderBy: {field: CREATED_AT}) {
      edges {
        node {
          description
        }
      }
    }
  }
}

リンク

解決方法

エラーが発生しました

Argument 'orderBy' on Field 'repositories' has an invalid value.
Expected type 'RepositoryOrder'.

必須とされているdirectionを指定し忘れています。これは動作します。

{
  repositoryOwner(login: "Naramsim") {
    login
    repositories(first: 3, isFork: true,  orderBy: {field: CREATED_AT, direction: ASC}) {
      edges {
        node {
          description
        }
      }
    }
  }
}