Mirror of a distributed, offline-first bug tracker embedded in git
1#import "./Bug.graphql" 2 3query GetBug($id: String!) { 4 repository { 5 name 6 bug(prefix: $id) { 7 ...Bug 8 } 9 } 10}