Documentation
  • Overview
  • Atlassian Cloud
    • Intercom for Jira Cloud
      • Get started
      • Guides
        • Jira administrators
          • Setting up
          • Managing app features
          • Managing notifications
            • Configuring notifications on issue updates
            • Configuring notifications for specific issue transitions
          • Managing visible Intercom data fields
          • Managing the Intercom app configuration
          • Configuring the app user
          • Revoking Intercom connection
          • Reconnecting broken Intercom connection
        • Jira users
          • Managing Intercom conversation links
          • Inspecting linked Intercom conversations
          • Commenting linked Intercom conversations
          • Searching and reporting
      • Concepts
        • App workflow
      • Forge migration
      • Announcements
      • FAQ
    • Travis CI integration for Jira
      • Getting Started
      • FAQ
  • Atlassian self-hosted
    • Intercom for Jira Data Center/Server
      • Get started
      • Guides
        • Jira administrators
          • Setting up
          • Managing Jira app features
          • Managing Intercom app features
          • Managing notifications
            • Configuring notifications on issue updates
            • Configuring notifications for specific issue transitions
          • Managing visible Intercom data fields
          • Revoking Intercom connection
          • Migrating to Intercom for Jira Cloud
        • Jira users
          • Linking Intercom conversations
          • Inspecting linked Intercom conversations
          • Commenting linked Intercom conversations
          • Searching and reporting
        • Intercom teammates
          • Adding the app to Inbox
          • Creating new Jira issues
          • Linking existing Jira issues
          • Managing linked Jira issues
      • Security Statement
      • FAQ
  • Intercom
    • Jira Cloud for Intercom
      • Get started
      • Guides
        • Intercom administrator
          • Setting up
          • Managing fields on the create issue form
          • Inspecting app information
          • Managing the Intercom app configuration
          • Changing the Intercom app user
          • Restricting app access
          • Uninstalling the app
        • Intercom teammates
          • Adding the app to Inbox
          • Creating new Jira issues
          • Linking existing Jira issues
          • Managing linked Jira issues
      • Concepts
        • Jira connection
      • FAQ
      • Privacy & Terms
  • Trust
    • Our privacy program
  • Legal
    • Privacy Policy
    • Service Level Agreement
    • End User License Agreement
    • Data Processing Agreement
    • Subprocessors
Powered by GitBook
On this page
  • Finding issues by Intercom conversation id
  • Finding issues by the number of linked conversations
  • Field Properties
  • Examples
  • Creating more complex queries
  • Examples
  1. Atlassian self-hosted
  2. Intercom for Jira Data Center/Server
  3. Guides
  4. Jira users

Searching and reporting

PreviousCommenting linked Intercom conversationsNextIntercom teammates

Last updated 3 years ago

As you link more and more Intercom conversations to Jira issues it becomes more and more important to be able to search and report on those links. Maybe you would like to understand which Jira issues have the most links such that you can prioritize your work. Or, you want to find issues that are linked to a specific Intercom conversation.

Intercom for Jira provides a integration that allows you to search, filter, and report issues based on linked Intercom conversation ids or the number of linked Intercom conversations.

Follow the steps in the Jira documentation on . After that, paste any of the following example queries into the query editor.

Finding issues by Intercom conversation id

You can find Jira issues linked to one or more Intercom conversation ids by using the linkedIntercomConversationId field.

Different query syntax between Jira 7.x and 8.x

Due to a change in Jira's internals between Jira 7.x and 8.x you will have to use a different JQL syntax to query linkedIntercomConversationId in Jira 7.x to 8.x.

Field Properties

Syntax

linkedIntercomConversationId

Field Type

STRING

Auto-complete

Yes

Supported operators

= , != , IS , IS NOT, IN , NOT IN

Examples

Find all Jira issues linked to Intercom conversation with id 42

linkedIntercomConversationId = 42

Find all Jira issues linked to Intercom conversation with id 42, 43 or 44

linkedIntercomConversationId IN (42, 43, 44)

Find all Jira issues that have no Intercom conversation links

linkedIntercomConversationId = EMPTY

Field Properties

Syntax

linkedIntercomConversationId

Field Type

TEXT

Auto-complete

No

Supported operators

~ , !~ , IS , IS NOT

Examples

Find all Jira issues linked to Intercom conversation with id 42

linkedIntercomConversationId ~ 42

Find all Jira issues linked to Intercom conversation with id 42 or 43

linkedIntercomConversationId ~ 42 OR
linkedIntercomConversationId ~ 43 

Find all Jira issues linked to Intercom conversation with id 42 and 43

linkedIntercomConversationId ~ "42 43"

Find all Jira issues that have no Intercom conversation links

linkedIntercomConversationId IS EMPTY

Finding issues by the number of linked conversations

This JQL field allows you to find Jira issues based on the number of Intercom conversations linked to an issue.

Field Properties

Syntax

linkedIntercomConversationCount

Field Type

NUMBER

Auto-complete

No

Supported operators

= , != , < , <= , > , >= , IS , IS NOT, IN , NOT IN

Examples

Find all Jira issues with more than 5 Intercom conversation links

linkedIntercomConversationCount > 5

Creating more complex queries

You can further refine the query examples shown above by combining them with standard JQL query features.

Examples

List all Jira issues of project ENG ordered by the number of linked Intercom conversations

project = ENG ORDER BY linkedIntercomConversationCount DESC

Find all Jira issues of project ENG that are linked to Intercom conversation with id 42

project = ENG AND linkedIntercomConversationId = 42
project = ENG AND linkedIntercomConversationId ~ 42

Find all Jira issues of project ENG that are resolved and have linked Intercom conversations

project = ENG AND linkedIntercomConversationId IS NOT EMPTY
Jira Query Language (JQL)
how to open advanced search