debian-mirror-gitlab/app/assets/javascripts/boards/graphql/issue.fragment.graphql

31 lines
428 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
relativePosition
assignees {
nodes {
...User
}
}
labels {
nodes {
id
title
color
description
}
}
}