github 查询个人邮箱 (备忘)

链接:

https://docs.github.com/en/graphql/overview/explorer

样例:

查询代码

{
  repository(name: "sqlmap", owner: "sqlmapproject") {
    ref(qualifiedName: "master") {
      target {
        ... on Commit {
          id
          history(first: 5) {
            edges {
              node {
                author {
                  name
                  email
                }
              }
            }
          }
        }
      }
    }
  }
}
posted @ 2022-07-04 11:08  huim  阅读(1119)  评论(0编辑  收藏  举报