debian-mirror-gitlab/app/assets/javascripts/boards/queries/issue.fragment.graphql
2020-11-24 15:15:51 +05:30

27 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
}
}
}