Search for Advanced Roadmaps custom fields in JQL
You can use Jira Query Language (JQL) to search for work items with custom work item fields used in your plan. You can search for
Parent link
Child work items
Team field
Target start or Target end
Parent link
To search for child work items of a work item in your plan using the work item’s Parent Link:
Syntax | "Parent Link" |
---|---|
Alias | cf[CustomFieldID] |
Field Type | Parent Link relationship |
Auto-complete | No |
Supported operators | IS,IS NOT,=,!=,IN,NOT IN |
Unsupported operators | ~,!~,>,>=,<,<= |
Supported Keywords | EMPTY |
Examples |
|
Child work items
To search for child work items of a work item:
Syntax | portfolioChildworkitemssOf("work item key") |
---|---|
Field Type | JQL function returning work item keys |
Auto-complete | No |
Supported operators | IS,IS NOT,=,!=,IN,NOT IN |
Unsupported operators | ~,!~,>,>=,<,<= |
Supported Keywords | EMPTY |
Examples |
|
Team field
To search for work items, including subtasks, using the Team custom field:
Syntax | "Team" |
---|---|
Aliases | "Team[Team]"
cf[CustomFieldID] |
Field type | Team Field |
Auto-complete | Yes Note: Selecting the shared team name from the auto-suggested list of team names will replace the actual name of the team in the query with its numerical ID. For example: "Team" = MyTeam → "Team" = 3 |
Supported operators | IS,IS NOT,=,!=,IN,NOT IN |
Unsupported operators | ~,!~,>,>=,<,<= |
Supported Keywords | EMPTY |
Examples |
|
Target start or Target end
To search for work items based on their target start or end date:
Syntax | "Target start" /or/ "Target end" |
---|---|
Alias | cf[CustomFieldID] |
Field type | Target Date Field |
Auto-complete | Yes Note: The auto-suggested list contains JQL functions that returns date-time values where the function name matches the user supplied text. For example: "Target start" = end → endOfDay(), endOfMonth(), endOfWeek(), endOfYear() |
Supported operators | =, !=, NOT IN, IN, IS NOT, IS, >, >=, <, <= |
Unsupported operators | ~,!~,>,>=,<,<= |
Supported Keywords | EMPTY |
Examples |
"Target start" >= "2020-01-02"
"Target start" < now()
"Target end" <= -5d
"Target end" is not EMPTY |
Was this helpful?