BugRow.graphql

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