I'm working on automating the retrieval of tests that are present on a test set
for that I'm using this query from the GraphQL api for Xray Cloud:
query GetTestSetTests($testSetId: String!) {
getTestSet(issueId: $testSetId) {
tests(limit: 100) {
results {
issueId
folder
jira(fields: [
"key",
"assignee",
"environment"
])
}
}
}
}
I'm marking the conflicting value.
according to documentation that field is perfectly valid:
Test (line 22)
and if instead of folder I use other present fields like projectId (also present in the documentation) or i remove folder from the query it works perfectly fine
is this field removed by some reason and is not available anymore?
is any other way to retrieve the repository path of a test object? thanks