I would like to get the story name and number from querying tasks by owner. I am wondering if this is possible in a single query or if I will have to first query for the specific task and then look up the story using the task identifier in two separate queries.
Input: Task.Owners.Name
Output: Story.Name,Story.Number
Task Attributes
*Owners.Name
*TaskID
Story Attributes
*TaskID
*Name
*Number
I am able to call the REST api like below:
rest-1.v1/Data/Task?where=Task.Owners.Name='{{ownerName}}'&sel=Task.Owners.Name,Task.Number,Parent
Is there a way to query the Story endpoint with only task attributes specified in the where condition?