2019-06-19 06:32:33 -04:00
|
|
|
query pathLastCommit($projectPath: ID!, $path: String, $ref: String!) {
|
|
|
|
project(fullPath: $projectPath) {
|
|
|
|
repository {
|
|
|
|
tree(path: $path, ref: $ref) {
|
2019-06-28 08:36:18 -04:00
|
|
|
lastCommit {
|
|
|
|
sha
|
2019-06-19 06:32:33 -04:00
|
|
|
title
|
|
|
|
message
|
|
|
|
webUrl
|
|
|
|
authoredDate
|
|
|
|
author {
|
|
|
|
name
|
|
|
|
avatarUrl
|
|
|
|
webUrl
|
|
|
|
}
|
2019-10-03 14:06:11 -04:00
|
|
|
signatureHtml
|
2019-11-14 07:06:30 -05:00
|
|
|
pipelines(ref: $ref, first: 1) {
|
|
|
|
edges {
|
|
|
|
node {
|
|
|
|
detailedStatus {
|
|
|
|
detailsPath
|
|
|
|
icon
|
|
|
|
tooltip
|
|
|
|
text
|
|
|
|
group
|
|
|
|
}
|
|
|
|
}
|
2019-06-19 06:32:33 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|