I am trying with following query :
project = ABC AND "view"=reporting AND "chart"=burndownChart AND sprint ="XYZ"
however when trying with this, I am getting error as
"Field 'view' does not exist or you do not have permission to view it.","Field 'chart' does not exist or you do not have permission to view it."
However I can check it from report view, which suggests I do have access, but I need to fetch the details using JQL. Any help would be much appreciated.
Thanks!!
To fetch the details of a Burndown chart, you will simply need to run the JQL for the board, with the sprint added to it. JQL uses the data to select on, and returns a list of issues, which gives you all the data that the burndown chart uses to work from when it renders.
I'd suggest "Project = ABC and Sprint = XYZ" is the JQL to get the issues you need. View and Chart are not fields I'd usually expect to see on issues, and I suspect you are guessing that using them would take you to a report. It can't, JQL is a search, not a report.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.