Bug.graphql

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