debian-mirror-gitlab/app/assets/javascripts/repository/queries/pathLastCommit.query.graphql

31 lines
602 B
GraphQL
Raw Normal View History

2019-09-30 21:07:59 +05:30
query pathLastCommit($projectPath: ID!, $path: String, $ref: String!) {
project(fullPath: $projectPath) {
repository {
tree(path: $path, ref: $ref) {
lastCommit {
sha
title
message
webUrl
authoredDate
author {
name
avatarUrl
webUrl
}
2019-12-21 20:55:43 +05:30
signatureHtml
2019-09-30 21:07:59 +05:30
latestPipeline {
detailedStatus {
detailsPath
icon
tooltip
text
group
}
}
}
}
}
}
}