jira.js
    Preparing search index...

    Function getFieldAutoCompleteForQueryString

    • Returns auto complete suggestions for JQL search

      Parameters

      • client: Client
      • Optionalparameters: {
            fieldName?: string;
            fieldValue?: string;
            predicateName?: string;
            predicateValue?: string;
        }
        • OptionalfieldName?: string

          The field name for which the suggestions are generated.

        • OptionalfieldValue?: string

          The portion of the field value that has already been provided by the user.

        • OptionalpredicateName?: string

          The predicate for which the suggestions are generated. Suggestions are generated only for: "by", "from" and "to".

        • OptionalpredicateValue?: string

          The portion of the predicate value that has already been provided by the user.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              results?: {
                  displayName: string;
                  value: string;
                  [key: string]: unknown;
              }[];
              [key: string]: unknown;
          },
      >