debian-mirror-gitlab/app/assets/javascripts/boards/graphql/issue.fragment.graphql
2021-02-22 17:27:13 +05:30

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