Skip to content

Built for people who want to own their automations. Join the waitlist for an invite.

Package listing

@kody/jira

src/search.js

11 lines · 409 B · JavaScript
import { searchIssues } from './jira.js'

/**
 * Search Jira issues with JQL. Pass the full JQL string; no project key is assumed.
 * @example
 * import searchIssues from 'kody:@kody/jira/search'
 * const result = await searchIssues({ jql: 'assignee = currentUser() ORDER BY updated DESC', maxResults: 10 })
 */
export default async function searchEntrypoint(input = {}) {
	return await searchIssues(input)
}