11 lines
289 B
GraphQL
11 lines
289 B
GraphQL
|
#import "../fragments/version.fragment.graphql"
|
||
|
|
||
|
mutation destroyDesign($filenames: [String!]!, $projectPath: ID!, $iid: ID!) {
|
||
|
designManagementDelete(input: { projectPath: $projectPath, iid: $iid, filenames: $filenames }) {
|
||
|
version {
|
||
|
...VersionListItem
|
||
|
}
|
||
|
errors
|
||
|
}
|
||
|
}
|