debian-mirror-gitlab/app/graphql/queries/repository/path_last_commit.query.graphql

48 lines
1,010 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) {
2021-01-03 14:25:43 +05:30
__typename
2019-09-30 21:07:59 +05:30
repository {
2021-01-03 14:25:43 +05:30
__typename
2019-09-30 21:07:59 +05:30
tree(path: $path, ref: $ref) {
2021-01-03 14:25:43 +05:30
__typename
2019-09-30 21:07:59 +05:30
lastCommit {
2021-01-03 14:25:43 +05:30
__typename
2019-09-30 21:07:59 +05:30
sha
title
2020-05-24 23:13:21 +05:30
titleHtml
2020-10-24 23:57:45 +05:30
descriptionHtml
2020-03-13 15:44:24 +05:30
message
2020-10-24 23:57:45 +05:30
webPath
2019-09-30 21:07:59 +05:30
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 {
2021-01-03 14:25:43 +05:30
__typename
2019-09-30 21:07:59 +05:30
name
avatarUrl
2020-10-24 23:57:45 +05:30
webPath
2019-09-30 21:07:59 +05:30
}
2019-12-21 20:55:43 +05:30
signatureHtml
2019-12-26 22:10:19 +05:30
pipelines(ref: $ref, first: 1) {
2021-01-03 14:25:43 +05:30
__typename
2019-12-26 22:10:19 +05:30
edges {
2021-01-03 14:25:43 +05:30
__typename
2019-12-26 22:10:19 +05:30
node {
2021-01-03 14:25:43 +05:30
__typename
2019-12-26 22:10:19 +05:30
detailedStatus {
2021-01-03 14:25:43 +05:30
__typename
2019-12-26 22:10:19 +05:30
detailsPath
icon
tooltip
text
group
}
}
2019-09-30 21:07:59 +05:30
}
}
}
}
}
}
}