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

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

mutation uploadDesign($files: [Upload!]!, $projectPath: ID!, $iid: ID!) {
  designManagementUpload(input: { projectPath: $projectPath, iid: $iid, files: $files }) {
    designs {
      ...DesignItem
      versions {
        edges {
          node {
            id
            sha
          }
        }
      }
    }
    skippedDesigns {
      filename
    }
    errors
  }
}