web-dev-qa-db-fra.com

Github graphQL OrderBy

J'ai une requête GraphQL. Je ne comprends pas pourquoi cela ne fonctionne pas.

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

Lien

14
Naramsim

Vous avez une erreur

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

Vous oubliez de spécifier la direction qui est marquée comme obligatoire. Cela fonctionnera:

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