mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-15 11:53:49 +07:00
Has as a likely side-effect that we'd need to reimplement linking of commit references... GitOrigin-RevId: 7d4f9a83f9097a8fc0c35785da81aafdb931acbe
13 lines
212 B
GraphQL
13 lines
212 B
GraphQL
fragment commit on Commit {
|
|
...commitShort
|
|
committer {
|
|
...gitActorInfo
|
|
}
|
|
messageBody
|
|
committedDate
|
|
parents(first: 100) {
|
|
nodes {
|
|
...commitHash
|
|
}
|
|
}
|
|
} |