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

destroy_artifact.mutation.graphql « mutations « graphql « artifacts « javascripts « assets « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 529224b47e6083d3c63927ab0194623ac70eb840 (plain)
1
2
3
4
5
6
7
mutation destroyArtifact($id: CiJobArtifactID!) {
  artifactDestroy(input: { id: $id }) {
    artifact {
      id
    }
  }
}