Experimental. Structured details about a JQL clause exceeding its argument limit.

interface SearchWarningLimitDetails {
    actual?: number;
    arguments?: string;
    clause?: string;
    limit?: number;
}

Properties

actual?: number

The actual number of arguments supplied that exceeded the limit.

arguments?: string

The arguments passed to the JQL clause.

clause?: string

The JQL clause that triggered the limit, e.g. issueHistory().

limit?: number

The maximum number of arguments allowed for the clause.