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

« Previous Version 4 Next »

The add-on provides several JQL extension to query Version Graph. You can pass either version id or version name to all JQL clauses. All of this JQL clauses returns list of version and can be combined with other JQL clauses. If you pass version name it is especially important to combine it with a project selection clause because the same version name may belong to different projects. For example several projects may have "1.0.0" version. 

JQL

Examples

Description

betweenVersions(startVersionIdOrName, endVersionIdOrName)



project = ERP AND fixVersion in betweenVersions(“1.2.0”, “1.0.0”)

project = ERP AND affectsVersion in betweenVersions(“1.2.0”, “1.0.0”)

All issues with versions between 1.0.0 and 1.2.0.



geVersion(versionIdOrName)



project = ERP AND fixVersion in geVersion(“1.0.2”)

project = ERP AND affectsVersion in geVersion(“1.0.2”)

All issues with “fixVersion” greater than or equal to 1.0.2



gtVersion(versionIdOrName)



project = ERP AND fixVersion in gtVersion(“1.1.0”)

project = ERP AND affectsVersion in gtVersion(“1.1.0”)

All issues with “fixVersion” greater than 1.1.0



leVersion(versionIdOrName)



project = ERP AND fixVersion in leVersion(“1.0.1”)

project = ERP AND affectsVersion in leVersion(“1.0.1”)

All issues with “fixVersion” less than or equal to 1.0.1



ltVersion(versionIdOrName)



project = ERP AND fixVersion in ltVersion(“1.0.1”)

project = ERP AND affectsVersion in ltVersion(“1.0.1”)

All issues with “fixVersion” less than or equal to 1.0.1



  • No labels