summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues_list/queries/reorder_issues.mutation.graphql
blob: 160026a4742d1cc82e3dbe5498d1801abcbb5a1b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
mutation reorderIssues(
  $oldIndex: Int
  $newIndex: Int
  $namespace: String
  $serializedVariables: String
) {
  reorderIssues(
    oldIndex: $oldIndex
    newIndex: $newIndex
    namespace: $namespace
    serializedVariables: $serializedVariables
  ) @client
}