Q:

github graphql query to get your repos

{
  viewer {
    repositories(first: 100, after: properCursorHereOrOmitIfFirstPage, orderBy: {field:NAME, direction:ASC}) {
      pageInfo {hasNextPage, endCursor}
      nodes {
        name
        url
        isPrivate
        owner {
          login
        }
        defaultBranchRef {
          name        
        }
      }
    }
  }
}
0

New to Communities?

Join the community