Skip to content

Instantly share code, notes, and snippets.

@togana
Last active September 10, 2017 07:22
Show Gist options
  • Save togana/5c8ad25030d9e2a1a732b71960f20b9c to your computer and use it in GitHub Desktop.
Save togana/5c8ad25030d9e2a1a732b71960f20b9c to your computer and use it in GitHub Desktop.
GitHub GraphQL V4 オーナー名とリポジトリ名からコミットメッセージを取得
{
repository(owner: "rails", name: "rails") {
name
defaultBranchRef {
target {
... on Commit {
history(first: 10) {
pageInfo {
hasNextPage
}
edges {
node {
oid
message
messageHeadline
author {
name
email
}
}
}
}
}
}
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment