debian-mirror-gitlab/app/assets/javascripts/issues/dashboard/queries/issue.fragment.graphql
2023-04-23 21:23:45 +05:30

56 lines
706 B
GraphQL

fragment IssueFragment on Issue {
id
iid
confidential
createdAt
downvotes
dueDate
hidden
humanTimeEstimate
mergeRequestsCount
moved
state
title
updatedAt
closedAt
upvotes
userDiscussionsCount @include(if: $isSignedIn)
webPath
webUrl
type
assignees @skip(if: $hideUsers) {
nodes {
id
avatarUrl
name
username
webUrl
}
}
author @skip(if: $hideUsers) {
id
avatarUrl
name
username
webUrl
}
labels {
nodes {
id
color
title
description
}
}
milestone {
id
dueDate
startDate
webPath
title
}
taskCompletionStatus {
completedCount
count
}
}