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

create_design_todo.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: 0c989b2fddecfb5f664f04b7fc6380e38da2dda9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mutation createDesignTodo(
  $projectPath: String!
  $issueId: String!
  $designId: String!
  $issueIid: String!
  $filenames: [String]!
  $atVersion: String
) {
  createDesignTodo(
    projectPath: $projectPath
    issueId: $issueId
    designId: $designId
    issueIid: $issueIid
    filenames: $filenames
    atVersion: $atVersion
  ) @client
}