jira.js
    Preparing search index...

    Function getIssuePickerResource

    • Get issue picker resource

      Parameters

      • client: Client
      • Optionalparameters: {
            currentIssueKey?: string;
            currentJQL?: string;
            currentProjectId?: string;
            query?: string;
            showSubTaskParent?: string;
            showSubTasks?: string;
        }
        • OptionalcurrentIssueKey?: string

          The key of the issue in context of which the request is executed

        • OptionalcurrentJQL?: string

          The JQL in context of which the request is executed

        • OptionalcurrentProjectId?: string

          The id of the project in context of which the request is executed

        • Optionalquery?: string

          The query

        • OptionalshowSubTaskParent?: string

          If set to false and request is executed in context of a subtask, the parent issue will not be included in the auto-completion result, even if it matches the query

        • OptionalshowSubTasks?: string

          If set to false, subtasks will not be included in the list

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              sections?: {
                  id?: string;
                  issues?: {
                      img?: string;
                      key?: string;
                      keyHtml?: string;
                      summary?: string;
                      summaryText?: string;
                      [key: string]: unknown;
                  }[];
                  label?: string;
                  msg?: string;
                  sub?: string;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >