jira.js
    Preparing search index...

    Function createReciprocalRemoteIssueLink

    • Create reciprocal remote issue link from a JSON representation. Jira will create two issue links, source -> target and target -> source.

      Available since Jira Data Center 10.7.

      Parameters

      • client: Client
      • parameters: {
            source?: {
                application?: { name?: string; type?: string; [key: string]: unknown };
                globalId?: string;
                object?: {
                    icon?: {
                        link?: string;
                        title?: string;
                        url16x16?: string;
                        [key: string]: unknown;
                    };
                    status?: {
                        icon?: {
                            link?: string;
                            title?: string;
                            url16x16?: string;
                            [key: string]: unknown;
                        };
                        resolved?: boolean;
                        [key: string]: unknown;
                    };
                    summary?: string;
                    title?: string;
                    url?: string;
                    [key: string]: unknown;
                };
                relationship?: string;
                [key: string]: unknown;
            };
            target?: {
                application?: { name?: string; type?: string; [key: string]: unknown };
                globalId?: string;
                object?: {
                    icon?: {
                        link?: string;
                        title?: string;
                        url16x16?: string;
                        [key: string]: unknown;
                    };
                    status?: {
                        icon?: {
                            link?: string;
                            title?: string;
                            url16x16?: string;
                            [key: string]: unknown;
                        };
                        resolved?: boolean;
                        [key: string]: unknown;
                    };
                    summary?: string;
                    title?: string;
                    url?: string;
                    [key: string]: unknown;
                };
                relationship?: string;
                [key: string]: unknown;
            };
        }
      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              source?: { [key: string]: unknown };
              target?: { [key: string]: unknown };
              [key: string]: unknown;
          },
      >