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

destroyDesign.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: 0b3cf636cdb3f2864fb8b5a831d2c55b1a0b1e26 (plain)
1
2
3
4
5
6
7
8
9
10
#import "../fragments/version.fragment.graphql"

mutation destroyDesign($filenames: [String!]!, $projectPath: ID!, $iid: ID!) {
  designManagementDelete(input: { projectPath: $projectPath, iid: $iid, filenames: $filenames }) {
    version {
      ...VersionListItem
    }
    errors
  }
}