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