Interface representing the parameters for configuring the JiraProjectLoader.
interface JiraProjectLoaderParamsOptional custom JQL query. When provided, this replaces the
auto-generated project = <projectKey> query entirely, giving
full control over filtering, sorting, and scoping.
Examples: "project = AC AND status = 'In Progress'" "project = AC AND sprint in openSprints() ORDER BY priority DESC" "assignee = currentUser() AND updated >= -7d"
Note: createdAfter is ignored when jql is provided ā include
any date filters directly in your JQL string.
Maximum total number of issues to fetch across all pages. When set, pagination stops early once this limit is reached. Without this, the loader fetches every issue matching the query.
Note: limitPerRequest controls the page size (how many issues
per API call), while maxTotal controls the overall cap.