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: 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
}