subscription.graphql

 1type Subscription {
 2  bugChanged(repoRef: String, query: String): BugChange!
 3}
 4
 5enum ChangeType {
 6  CREATED
 7  UPDATED
 8}
 9
10type BugChange {
11  type: ChangeType!
12  bug: Bug!
13}