Details of a parsed JQL query.

interface ParsedJqlQuery {
    errors?: string[];
    query: string;
    structure?: JqlQuery;
}

Properties

errors?: string[]

The list of syntax or validation errors.

query: string

The JQL query that was parsed and validated.

structure?: JqlQuery

The syntax tree of the query. Empty if the query was invalid.