Skip to content

Latest commit

 

History

History
24 lines (19 loc) · 456 Bytes

github-graphql.md

File metadata and controls

24 lines (19 loc) · 456 Bytes

GitHub GraphQL

List all user repositories sorted by creation date

{
  repositoryOwner(login: "retifrav") {
    repositories(orderBy: {field: CREATED_AT, direction: DESC}, first: 50) {
      edges {
        node {
          name
          createdAt
        }
      }
    }
  }
}