CloseBug.graphql

1# Write your query or mutation here
2mutation closeBug($input: BugStatusCloseInput!) {
3  bugStatusClose(input: $input) {
4    bug {
5      id
6    }
7  }
8}