Page tree

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

Compare with Current View Page History

Version 1 Next »

From version 3.0.0, you can search for issues by the following criteria:

  • search for issues that attribute to specific builds
  • search for issues against the Fixed in Build field in breakdown by build number, build status, and presence of value in the field

Searching for issues with JQL 

  1. Open the Search for issues section.
  2. Switch to the Advanced search.
  3. Enter the JQL query to look up for issues.
  4. Click Search or press Enter.

Searching for issues attributing to specific builds

See the table below for examples of JQL queries:

JQL Query PatternJQL Query ExampleDescription
ISSUE IN issuesRelatedToTeamCityBuild("#{build_number}")
ISSUE IN issuesRelatedToTeamCityBuild("#217", "#218")
Looks up for issues that relate to builds #217 and #218.
ISSUE IN issuesRelatedToTeamCityBuild("{teamcity_server_name}","#{build_number}")
ISSUE IN issuesRelatedToTeamCityBuild("Jetbrains","#3446","#3434","#3431")
Looks up for issues that relate to builds #3446, #3434, and #3431 in the Jetbrains TeamCity server.

Searching for issues against the Fixed in build field

See the table below for examples of JQL queries:

JQL Query PatternJQL Query ExampleDescription
<FixedInBuild_name> = 'SUCCESS' | 'FAILURE'
<FixedInBuild_name> = 'SUCCESS' | 'FAILURE'

Looks up for issues that relate to builds #217 and #218.
<FixedInBuild_name> = "#3411"

Looks up for issues that relate to builds #3446, #3434, and #3431 in the Jetbrains TeamCity server.
<FixedInBuild_name> IN ("#3446","#3434")
<FixedInBuild_name> IN ("#3446","#3434")

<FixedInBuild_name> IS EMPTY
<FixedInBuild_name> IS EMPTY

<FixedInBuild_name> IS NOT EMPTY
<FixedInBuild_name> IS NOT EMPTY


  • No labels