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

39 lines
805 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
2020-05-24 23:13:21 +05:30
titleHtml
2019-12-26 22:10:19 +05:30
description
2020-03-13 15:44:24 +05:30
message
2019-09-30 21:07:59 +05:30
webUrl
authoredDate
2019-12-26 22:10:19 +05:30
authorName
2020-03-13 15:44:24 +05:30
authorGravatar
2019-09-30 21:07:59 +05:30
author {
name
avatarUrl
webUrl
}
2019-12-21 20:55:43 +05:30
signatureHtml
2019-12-26 22:10:19 +05:30
pipelines(ref: $ref, first: 1) {
edges {
node {
detailedStatus {
detailsPath
icon
tooltip
text
group
}
}
2019-09-30 21:07:59 +05:30
}
}
}
}
}
}
}