Include Expression
You can include tracker items description as parameter in queries. The description of the item what you want to use has to be 'Plain'.
You can set the following pattern to description:
• id list: 1,2,3
• tracker reference: ${currentTrackerId}
• project reference: ${currentProjectId}
Syntax:
tracker.id in (include[123])//description of 123 = 1,2,3
tracker.id = include[123] //description of 123 = ${currentTrackerId}
project.id = include[123] //description of 123 = ${currentProjectId}
item.id in (include[123]) //description of 123 = 2,3,4
You can also use it in filters which filter by id. For example:
releaseId IN (include[123])