aboutsummaryrefslogtreecommitdiffstats
path: root/webui/src/components/CloseBugButton/CloseBug.graphql
blob: bfcb1a60942bb4ad12a13ef7ede7170da2f5ca18 (plain) (blame)
1
2
3
4
5
6
7
8
# Write your query or mutation here
mutation closeBug($input: BugStatusCloseInput!) {
  bugStatusClose(input: $input) {
    bug {
      id
    }
  }
}