debian-mirror-gitlab/app/assets/javascripts/repository/queries/pathLastCommit.query.graphql
2020-03-13 15:44:24 +05:30

37 lines
785 B
GraphQL

query pathLastCommit($projectPath: ID!, $path: String, $ref: String!) {
project(fullPath: $projectPath) {
repository {
tree(path: $path, ref: $ref) {
lastCommit {
sha
title
description
message
webUrl
authoredDate
authorName
authorGravatar
author {
name
avatarUrl
webUrl
}
signatureHtml
pipelines(ref: $ref, first: 1) {
edges {
node {
detailedStatus {
detailsPath
icon
tooltip
text
group
}
}
}
}
}
}
}
}
}