1#import "~/graphql_shared/fragments/milestone.fragment.graphql"
2#import "~/graphql_shared/fragments/user.fragment.graphql"
3
4fragment IssueNode on Issue {
5  id
6  iid
7  title
8  referencePath: reference(full: true)
9  dueDate
10  timeEstimate
11  totalTimeSpent
12  humanTimeEstimate
13  humanTotalTimeSpent
14  emailsDisabled
15  confidential
16  hidden
17  webUrl
18  relativePosition
19  milestone {
20    ...MilestoneFragment
21  }
22  assignees {
23    nodes {
24      ...User
25    }
26  }
27  labels {
28    nodes {
29      id
30      title
31      color
32      description
33    }
34  }
35}
36