Skip to main content
Skip table of contents

JQL Search by Backbone Attributes

This feature is currently only available on Jira Cloud. For Jira Server and Data Center, please follow this work item: BAC-1556

This article explains for which Backbone attributes you can search for using JQL. This can be useful for getting an overview of work items synced with Backbone and for troubleshooting.

Work Item Sync Status

Every work items that is synced with Backbone can be either up to date, pending or in an error state. You can search for that with the following:

  • Attribute: backbone.issueStatus

  • Example JQL: backbone.issueStatus in (pending, up_to_date, error)

    • This will list all issues that are up to date, pending or in an error state

Remote Work Item Key

To search for which work item your work item is synced to, you can use the remote key. There are two ways you can search for this key. You can search for that with the following:

  • Attribute: backbone.remoteKey

  • Example JQL: backbone.remoteKey = PA-12

    • This will list the work item(s) that are synced to work item PA-12

  • Attribute: backbone.remoteKeyLike

  • Example JQL: backbone.remoteKey ~ "PA*"

    • This will list the work item(s) that are synced with a work item with the key PA

Last Send

Every time an update is made on a work item that is synced by Backbone, the last send will be updated to this date. This is stored as any other date field. You can search for that with the following:

  • Attribute: backbone.lastSent

  • Example JQL: backbone.lastSent > startOfDay()

    • This will list all work items that have synced/send over information since the start of the day

Last Received

Every time an update on the partner side has been made and this gets synced, the last received will be updated to this date. This is stored as any other date field. You can search for that with the following:

  • Attribute: backbone.lastReceived

  • Example JQL: backbone.lastReceived > startOfDay()

    • This will list all work items that have received synced information since the start of the day

JavaScript errors detected

Please note, these errors can depend on your browser setup.

If this problem persists, please contact our support.