jira.js
    Preparing search index...

    Function migrateQueries

    • Converts one or more JQL queries with user identifiers (username or user key) to equivalent JQL queries with account IDs.

      You may wish to use this operation if your system stores JQL queries and you want to make them GDPR-compliant. For more information about GDPR-related changes, see the migration guide.

      Permissions required: Permission to access Jira.

      Parameters

      • client: Client
      • parameters: { queryStrings?: string[] }
        • OptionalqueryStrings?: string[]

          A list of queries with user identifiers. Maximum of 100 queries.

      • Optionaloptions: RequestOptions

      Returns Promise<
          {
              queriesWithUnknownUsers?: {
                  convertedQuery?: string;
                  originalQuery?: string;
                  [key: string]: unknown;
              }[];
              queryStrings?: string[];
              [key: string]: unknown;
          },
      >