debian-mirror-gitlab/app/graphql/queries/repository/path_last_commit.query.graphql
2022-08-13 15:12:31 +05:30

55 lines
1.2 KiB
GraphQL

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