Placeholder syntax and examples
This article describes the syntax of the SQL placeholders.
You can use placeholders to get values from Jira elements and populate the grid with these values.
Below you will find some examples of queries which help to get the values from Jira-specific elements.
Syntax
To get the value from Jira element use the following placeholder syntax
{<jira_element>:<value>:<field>:<selector>}
<jira_element> - Jira element that includes the data you want to set in a grid. You can get values from the Jira elements like issue, parent issue, project, user etc.
<value> - the value you want to get from the previously specified Jira element. Check the supported values.
For example, get the due date from the current issue
{issue:due_date}
<field> - a specific field of the selected Jira value. This parameter is applicable only for multi-value Jira elements.
Some elements in Jira have a set of different fields. You can get the value from any of these fields.
For example, labels have an id and a name. You can get a list of labels' ids or names.
Get the list of labels' ids separated by comma
{issue:labels:id}
Get the list of labels' names separated by comma
{issue:labels:name}
<selector> - this parameter is used only in multi-value fields. It specifies the exact value you want to get. Can be an index number or all
If the element has multiple values and you want to get a specific one you can use the index number of this value to get it from this element.
For example, you can get the third value from the labels field of the current issue with the following query
Examples
SQL query with the placeholder to get issue summary
Setting a default column value with the help of the placeholder
Check if the first selected version from the custom field with id 12345 is released or not. The returned value would be true or false.
Custom field values
Single Value custom fields
Get the URL from the custom field with id 10506
Multi-Value types
When you get data from the multi-values custom field you will get a list of all values separated by comma.
Get a list of users from the custom field of type user picker(multiple choices).
Get all option names from the custom field select list(multiple choices). The custom field id is 12345. These names will be separated by a comma.