summaryrefslogtreecommitdiff
path: root/app/assets/javascripts/design_management/graphql/mutations/create_design_todo.mutation.graphql
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
}