Jira.js - Jira Cloud API library
    Preparing search index...

    Interface IssuesJqlMetaData

    The description of the page of issues loaded by the provided JQL query.

    interface IssuesJqlMetaData {
        count: number;
        maxResults: number;
        startAt: number;
        totalCount: number;
        validationWarnings?: string[];
    }
    Index

    Properties

    count: number

    The number of issues that were loaded in this evaluation.

    maxResults: number

    The maximum number of issues that could be loaded in this evaluation.

    startAt: number

    The index of the first issue.

    totalCount: number

    The total number of issues the JQL returned.

    validationWarnings?: string[]

    Any warnings related to the JQL query. Present only if the validation mode was set to warn.