GiitHub GraphiQL API를 통해 직접 만든 저장소 나열

2773 단어 GitHubGraphQLtech
published_at: 2019-05-22 07:27
자신의 기사인데 서비스가 끝나면서 Qrunch에서 넘어왔어요.
GitHub GraphQL API Explorer昨日の自分のコミットをリストする Query を探そう오늘은 作成したリポジトリのリスト(新しい順)에 살기 때문에 우선 놓아두세요.

PreRequirement

  • GiitHub GraphiQL API Explorer에 Sign In/Authentificated
  • 추가

    GraphQL Query


    
    {
      query: viewer {
        login
        contributionsCollection {
          repositoryContributions(last : 21) {
            totalCount
            nodes {
              repository {
                name
                url
                isFork
                isPrivate
                createdAt
              }
            }
          }
        }
      }
    }
    
    
  • (last:21) 보고 totalCount 추가 지정
  • Note

  • Private 창고를 제공하지 않는 방법을 축소하는 방법
  • refs

  • https://developer.github.com/v4/
  • https://developer.github.com/v4/guides/forming-calls/#authenticating-with-graphql
  • http://akasatanappa.hatenablog.com/entry/2018/06/10/205917
  • https://yosiakatsuki.net/blog/get-github-issues-gas/
  • 좋은 웹페이지 즐겨찾기