Files
openide/plugins/github/resources/graphql/fragment/commit.graphql
Chris Lemaire 8987b51825 [github] Process commit message bodies ourselves
Has as a likely side-effect that we'd need to reimplement
linking of commit references...

GitOrigin-RevId: 7d4f9a83f9097a8fc0c35785da81aafdb931acbe
2024-06-17 11:23:20 +00:00

13 lines
212 B
GraphQL

fragment commit on Commit {
...commitShort
committer {
...gitActorInfo
}
messageBody
committedDate
parents(first: 100) {
nodes {
...commitHash
}
}
}