debian-mirror-gitlab/app/assets/javascripts/pipelines/graphql/queries/get_pipeline_header_data.query.graphql

38 lines
583 B
GraphQL
Raw Normal View History

2021-01-03 14:25:43 +05:30
query getPipelineHeaderData($fullPath: ID!, $iid: ID!) {
project(fullPath: $fullPath) {
2022-01-26 12:08:38 +05:30
id
2021-01-03 14:25:43 +05:30
pipeline(iid: $iid) {
id
2021-02-22 17:27:13 +05:30
iid
2021-01-03 14:25:43 +05:30
status
retryable
cancelable
userPermissions {
destroyPipeline
2021-09-04 01:27:46 +05:30
updatePipeline
2021-01-03 14:25:43 +05:30
}
detailedStatus {
2022-01-26 12:08:38 +05:30
id
2021-01-03 14:25:43 +05:30
detailsPath
icon
group
text
}
createdAt
user {
2021-12-11 22:18:48 +05:30
id
2021-01-03 14:25:43 +05:30
name
2021-12-11 22:18:48 +05:30
username
2021-01-03 14:25:43 +05:30
webPath
2021-12-11 22:18:48 +05:30
webUrl
2021-01-03 14:25:43 +05:30
email
avatarUrl
status {
message
emoji
}
}
}
}
}