Is it possible in JQL to retrieve all ideas connected to a given idea, e.g., all solutions that belong to a given opportunity? I'm trying to share a spreadsheet based on a view. I can't just use export CSV from a list view because I need the description field, and I cannot add it to a list. Ideas?
What @Jeremy Drexler said!
Connections are based on issue links.
Here's a demo: https://www.loom.com/share/e4d9d28d168a43879807fbf7b1a4e675?sid=7593a9b3-f1b9-4e81-b7b1-7aa9cc992d83
The JQL I used:
issue in linkedIssues("P2-728") and type=Solution
This is not exactly what you asked for, but you can use Plans and there you can group by the Idea. I haven't tried it, but I would guess that you can then export CSV from there.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Can you use: issue IN linkedIssues("card number")
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.