OBJECT
removeEvidenceFromTestRunStep
link GraphQL Schema definition
1 Mutation removeEvidenceFromTestRunStep { 2 3 # Mutation used to remove evidence from a Test Run Step. 4 # 5 # Arguments 6 # testRunId: The id of the Test Run. 7 # stepId: the id of the Test Run Step. 8 # iterationRank: the rank of the iteration. 9 # evidenceIds: the id of the evidence. 10 # evidenceFilenames: the filename of the evidence. 11 (: String!, : String!, : String, : [String], : [String]): RemoveEvidenceResult 12 13 }
link Example
The mutation below removes an evidence from the Test Run Step.
mutation {
removeEvidenceFromTestRunStep(
testRunId: "5e8489c05f200f3cd45bbaf0",
stepId: "316eb258-10bb-40c0-ae40-ab76004cc505",
evidenceFilenames: ["evidence.txt"]
) {
removedEvidence
warnings
}
}