ICONS
These queries allow displaying icons of issue types, statuses, and priorities
For this, you need to use a function named IMG()
The formula construction is: IMG(TableName.ICONURL, width,height)
For example: IMG(it.ICONURL,16,16) where:
“it” - alias for table ISSUETYPE
16,16 - width 16 px, height 16 px.
EXAMPLES
PROJECTNAME* is a tentative name in our queries. Please note that in your JQLs you need to use real names of your Projects, Users, Sprints ,etc.
Add Issue type icon
select IMG(it.ICONURL,16,16) as `Type`, LINKISSUE(i.`KEY`) as `Issue`
from ISSUE i
join ISSUETYPE it on it.ID=i.TYPEID
where JQL='project=PROJECTNAME'
Add a description to the Issue type icon
In this case, we gonna combine two functions IMG and CONCAT
CONCAT takes a variable number of string arguments and concatenates (or joins) them into a single string. It requires a minimum of two input values; otherwise, CONCAT will raise an error.
select IMG(it.ICONURL,16,16,CONCAT(it.NAME, ': ', it.DESCRIPTION)) as `Type`,
LINKISSUE(i.`KEY`) as `Issue`
from ISSUE i
join ISSUETYPE it on it.ID=i.TYPEID
where JQL='project=PROJECTNAME'
Add Priority icon
select LINKISSUE(i.`KEY`) as `Issue`,
IMG(ip.ICONURL,16,16 ) as `Priority`
from ISSUE i
join ISSUEPRIORITY ip on ip.ID=i.PRIORITYID
where JQL='project=PROJECTNAME ORDER BY updated DESC'
Join Status Name and Status color through the function LOZENGESTATUS
select LINKISSUE(i.`KEY`) as `Issue`,
LOZENGESTATUS(sc.COLOR, s.NAME, true) as `Status`
from ISSUE i
join STATUS s on s.ID = i.STATUSID
join WORKFLOWSTATUSCATEGORY sc on sc.ID = s.CATEGORYID
where JQL='project=PROJECTNAME ORDER BY updated ASC'
Transforming each column that contains an Icon you,finally, receive a table kind of this:
select IMG(it.ICONURL,16,16,CONCAT(it.NAME, ': ', it.DESCRIPTION)) as `Type`,
LINKISSUE(i.`KEY`) as `Issue`, IMG(ip.ICONURL,16,16 ) as `Priority`,
LOZENGESTATUS(sc.COLOR, s.NAME, true) as `Status`,
x.DISPLAYNAME as `Assignee`, y.DISPLAYNAME as `Reporter`,
FORMATDATE(i.CREATED,'yyyy-MM-DD') as `Created`
from ISSUE i
join STATUS s on s.ID = i.STATUSID
join WORKFLOWSTATUSCATEGORY sc on sc.ID = s.CATEGORYID
join USER x on i.ASSIGNEEID=x.ACCOUNTID
join USER y on i.REPORTERID=y.ACCOUNTID
join ISSUETYPE it on it.ID=i.TYPEID
join ISSUEPRIORITY ip on ip.ID=i.PRIORITYID
where JQL='assignee = currentUser()'