2
1
0
When using Exalate with Jira Cloud where can I see a list of connected issues?
  1. Antonio de la Peña

    I need to know this too

CommentAdd your comment...

2 answers

  1.  
    1
    0
    -1

    Ariel Aguilar Is there an SQL that can be used for Jira server?

      CommentAdd your comment...
    1.  
      1
      0
      -1

      Hi there,


      Unfortunately, there is not an automatic way for you to pull out issues in sync but here is an SQL query which you can use:


      SELECT LR.issue_urn AS this_issue, RR.issue_urn AS remote_issue FROM twin_trace TT LEFT JOIN replica LR ON TT.local_replica_id = LR.id LEFT JOIN replica RR ON TT.remote_replica_id = RR.id JOIN relation R ON TT.relation_id = R.id WHERE R.name IN ('JIRA_SERVER_to_JIRA_CLOUD');

      We are looking forward on implementing this feature, but I hope you find this is helpful in the meantime. 


      Thanks,

      Ariel

        CommentAdd your comment...