Welcome to mirror list, hosted at ThFree Co, Russian Federation.

reorder_issues.mutation.graphql « queries « issues_list « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
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
}