Hi,
I have xray cloud and i need a way to filter Test Execution results to show only FAILED tests.
Is it possible to filter testResults?
My query that returns all tests in test execution:
getTestExecution(issueId: "XXXX") {
issueId
jira(fields: ["key"])
tests(limit: 100) {
total
start
limit
results {
issueId
jira(fields: ["key"])
status {
name
}
}
}
}
this query returns all tests in execution, but i need only failed ones.