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

    Interface ParseJqlQueries

    A list of JQL queries to parse.

    interface ParseJqlQueries {
        queries: string[];
        validation?: string;
    }

    Hierarchy (View Summary)

    Index

    Properties

    Properties

    queries: string[]

    A list of queries to parse.

    validation?: string

    How to validate the JQL query and treat the validation results. Validation options include:

    • strict Returns all errors. If validation fails, the query structure is not returned.
    • warn Returns all errors. If validation fails but the JQL query is correctly formed, the query structure is returned.
    • none No validation is performed. If JQL query is correctly formed, the query structure is returned.