NewBug.graphql

1mutation newBug($input: BugCreateInput!) {
2  bugCreate(input: $input) {
3    bug {
4      id
5    }
6  }
7}