30 lines
428 B
GraphQL
30 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
|
|
}
|
|
}
|
|
}
|