This function works only when using in our builtin SQL navigator. It requires following parameters:
Type | Notes |
---|---|
String | Label to be shown as a link. |
String | URL. This can be a full url (with http/https prefix) or only a path. When having a path - Jira base url path context is added. |
Examples
Simple SQL SELECT I.SUMMARY, P.NAME, P.ICONURL FROM ISSUES I JOIN PRIORITIES P ON I.PRIORITY = P.ID LIMIT 4 | SQL with ASICON function SELECT I.SUMMARY, ASICON(P.NAME, P.ICONURL) FROM ISSUES I JOIN PRIORITIES P ON I.PRIORITY = P.ID LIMIT 4 |
---|---|