32 lines
385 B
GraphQL
32 lines
385 B
GraphQL
|
#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
|
||
|
}
|
||
|
}
|
||
|
}
|