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

move_design.mutation.graphql « mutations « graphql « design_management « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 144b272999949159caf5b284cdcaa662da90f570 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#import "../fragments/design_list.fragment.graphql"

mutation DesignManagementMove(
  $id: DesignManagementDesignID!
  $previous: DesignManagementDesignID
  $next: DesignManagementDesignID
) {
  designManagementMove(input: { id: $id, previous: $previous, next: $next }) {
    designCollection {
      designs {
        nodes {
          ...DesignListItem
        }
      }
    }
    errors
  }
}