0

How would I construct a JQL query to find all text executions for a given testplan? I do have the testplan key.

I know this sounds strange since you can see it, when you open the testplan. But I am trying to automate the creation of executions and in the API the testplan issue has no link to it's executions, it's only the other way around. So I try to get them by query.

Jefe infiltrado
  • 364
  • 2
  • 15

1 Answers1

2

Use:

issue in testPlanTestExecutions("XXX")

XXX = test plan key

segev_gr
  • 79
  • 1
  • 1
  • 8