OBJECT
addTestExecutionsToTest
link GraphQL Schema definition
1 Mutation addTestExecutionsToTest { 2 3 # Mutation used to associate Test Executions to the Test. 4 # 5 # Arguments 6 # issueId: the issue id of the Test. 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 "12345".
mutation { addTestExecutionsToTest( issueId: "12345", testExecIssueIds: ["54321"] ) { addedTestExecutions warning } }