Hi everyone, its my first post here and my english its not great.
I hope i can explain my self correctly.
First of all, i have no problem connecting to Xray cloud using Postman. I use client_id and client_secret to get de token for making the requests
Then i can get all xray data rellating to test (testPlan, test execution) and i have couples question.
I see the this official documentation but i dont know if isnt a great documentation or if i dont aundertand correctly.
First question,
When i request all Test vía GraphQL like this:
{
getTests(jql:"project='abc'",limit: 100) {
total
start
limit
results {
issueId
testType {
name
kind
}
jira(fields: ["assignee", "reporter"])
}
}
}testPlans(limit:10){
total
start
result{
issueId
jira(field:["key"])
}
}{
getTests(limit: 100) {
total
start
limit
results {
issueId
testType {
name
kind
}
testPlans(limit:10){
total
start
result{
issueId
jira(field:["key"])
}
}
jira(fields: ["assignee", "reporter"])
}
}
}jira(fields: ["assignee", "reporter"])
jira(fields: ["assignee", "link", "reporter"])