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

32 lines
499 B
GraphQL
Raw Normal View History

2021-01-03 14:25:43 +05:30
query getPipelineHeaderData($fullPath: ID!, $iid: ID!) {
project(fullPath: $fullPath) {
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
}
detailedStatus {
detailsPath
icon
group
text
}
createdAt
user {
name
webPath
email
avatarUrl
status {
message
emoji
}
}
}
}
}