OBJECT

removeEvidenceFromTestRun

link GraphQL Schema definition

1Mutation removeEvidenceFromTestRun {
2
3# Mutation used to remove evidence from a Test Run.
4#
5# Arguments
6# id: the id of the Test Run.
7# evidenceIds: the ids of the evidence to remove from the Test Run.
8# evidenceFilenames: the filenames of the evidence to remove from the Test Run.
9removeEvidenceFromTestRun(id: String!, evidenceIds: [String], evidenceFilenames: [String]): RemoveEvidenceResult
10
11}

link Example

The mutation below removes an evidence from the Test Run.

mutation {
    removeEvidenceFromTestRun(
        id: "5acc7ab0a3fe1b6fcdc3c737",
        evidenceFilenames: ["evidence.txt"]
    ) {
        removedEvidence
        warnings
    }
}