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

32 lines
385 B
GraphQL
Raw Normal View History

2020-10-24 23:57:45 +05:30
#import "~/graphql_shared/fragments/user.fragment.graphql"
fragment IssueNode on Issue {
id
iid
title
referencePath: reference(full: true)
dueDate
timeEstimate
weight
confidential
webUrl
subscribed
blocked
epic {
id
}
assignees {
nodes {
...User
}
}
labels {
nodes {
id
title
color
description
}
}
}