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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

56 lines
1.2 KiB
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
2022-01-26 12:08:38 +05:30
id
2019-09-30 21:07:59 +05:30
repository {
2021-01-03 14:25:43 +05:30
__typename
2022-08-13 15:12:31 +05:30
paginatedTree(path: $path, ref: $ref) {
2021-01-03 14:25:43 +05:30
__typename
2022-08-13 15:12:31 +05:30
nodes {
2021-01-03 14:25:43 +05:30
__typename
2022-08-13 15:12:31 +05:30
lastCommit {
2021-01-03 14:25:43 +05:30
__typename
2022-01-26 12:08:38 +05:30
id
2022-08-13 15:12:31 +05:30
sha
title
titleHtml
descriptionHtml
message
2020-10-24 23:57:45 +05:30
webPath
2022-08-13 15:12:31 +05:30
authoredDate
authorName
authorGravatar
author {
__typename
id
name
avatarUrl
webPath
}
signatureHtml
pipelines(ref: $ref, first: 1) {
2021-01-03 14:25:43 +05:30
__typename
2022-08-13 15:12:31 +05:30
edges {
2021-01-03 14:25:43 +05:30
__typename
2022-08-13 15:12:31 +05:30
node {
2021-01-03 14:25:43 +05:30
__typename
2022-01-26 12:08:38 +05:30
id
2022-08-13 15:12:31 +05:30
detailedStatus {
__typename
id
detailsPath
icon
tooltip
text
group
}
2019-12-26 22:10:19 +05:30
}
}
2019-09-30 21:07:59 +05:30
}
}
}
}
}
}
}