OBJECT
addTestExecutionsToTestPlan
link GraphQL Schema definition
1 Mutation addTestExecutionsToTestPlan { 2 3 # Mutation used to associate Test Executions to the Test Plan. 4 # 5 # Arguments 6 # issueId: the issue id of the Test Plan. 7 # testExecIssueIds: the issue ids of the Test Executions. 8 (: String!, : [String]!): AddTestExecutionsResult 9 10 }
link Example
The mutation below will associate the Test Execution with issue id "54321" to the test Plan "12345".
mutation {
addTestExecutionsToTestPlan(
issueId: "12345",
testExecIssueIds: ["54321"]
) {
addedTestExecutions
warning
}
}