BugQuery.graphql

1#import "./Bug.graphql"
2
3query GetBug($id: String!) {
4  repository {
5    bug(prefix: $id) {
6      ...Bug
7    }
8  }
9}