gitlab-org--gitlab-foss/app/assets/javascripts/boards/queries/issue.fragment.graphql

28 lines
365 B
GraphQL

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