summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/issues_list/queries/reorder_issues.mutation.graphql
blob: 5927e3e83c78d7bee810f9176277fb4896637ab6 (plain)
1
2
3
4
5
6
7
mutation reorderIssues($oldIndex: Int, $newIndex: Int, $serializedVariables: String) {
  reorderIssues(
    oldIndex: $oldIndex
    newIndex: $newIndex
    serializedVariables: $serializedVariables
  ) @client
}