Skip to end of metadata
Go to start of metadata

You are viewing an old version of this page. View the current version.

Compare with Current View Page History

Version 1 Current »

Description:

Searches issues that have been moved from one project to another. Additionally, you can further refine your query by specifying either or both the source and destination project.

Note:

You can use the asterisc symbol (*), in both source and destination project arguments as a keyword for refering to 'any project'.


Syntax

movedIssues()
movedIssues(sourceProject)
movedIssues(sourceProject, destinationProject)

Available sincev2.0.0-RELEASE
Supported fieldsIssue
Supported operatorsIN , NOT IN
Unsupported operators

= , != , ~ , !~ , > , >= , < , <=

IS , IS NOT , WAS , WAS IN , WAS NOT , WAS NOT IN , CHANGED

Examples:

• Find issues that have ever been moved from one project to another:

issue IN movedIssues()

• Find Stories that been moved from EMEA project:

type = Story AND issue IN movedIssues("EMEA")

• Find Bug that been moved to LATAM project:

type = Story AND issue IN movedIssues("*", "LATAM")

• Find 'Open' issues that been moved from EMEA to LATAM project:

status = Open AND issue IN movedIssues("EMEA", "LATAM")

Real World Use Cases:

· JRASERVER-41039 - Ability to search for issues that were moved (by Ismael Olusula Jimoh)
·
How to find issues that were moved from one project to another (by srinivasp at ATLASSIAN Community)
·
View issues that have been moved from one project to another (by Kristin Bestla at ATLASSIAN Community)

JQL Function Reference

  • No labels