BugRow.graphql

 1#import "../Author.graphql"
 2#import "../Label.graphql"
 3
 4fragment BugRow on Bug {
 5  id
 6  humanId
 7  title
 8  status
 9  createdAt
10  labels {
11    ...Label
12  }
13  ...authored
14}