debian-mirror-gitlab/app/assets/javascripts/boards/graphql/issue.fragment.graphql
2021-04-29 21:17:54 +05:30

35 lines
476 B
GraphQL

#import "~/graphql_shared/fragments/user.fragment.graphql"
fragment IssueNode on Issue {
id
iid
title
referencePath: reference(full: true)
dueDate
timeEstimate
totalTimeSpent
humanTimeEstimate
humanTotalTimeSpent
emailsDisabled
confidential
webUrl
subscribed
relativePosition
milestone {
id
title
}
assignees {
nodes {
...User
}
}
labels {
nodes {
id
title
color
description
}
}
}