Skip to content

Graphql api get commit messages user made to all repos and branches for this weak #24830

Discussion options

You must be logged in to vote

Hi @rudolfhladik,

Thank you for being here! You could try the following query for example:

{
  search(query: "org:atom", type: REPOSITORY, last: 100) {
    nodes {
      ... on Repository {
        name
        defaultBranchRef {
          name
          target {
            ... on Commit {
              history(first: 100, since: "2019-10-11T00:00:00") {
                totalCount
                nodes {
                  ... on Commit {
                    committedDate
                    additions
                    messageHeadline
                    author {
                      name
                      email
                    }
                  }
                }
          …

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
2 participants