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

upload_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: 84aeb37435141cb7af3188662d936b7b688433bb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#import "../fragments/design.fragment.graphql"

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