Optional _schema: SchemaDiscoveryOptional _resolver: FieldResolverOptional _converter: ConverterRegistrySearch for issues using human-readable criteria
Supports two modes:
jql option for full controlSearch criteria with human-readable field names or raw JQL
Array of matching issues
// Raw JQL (power user)
const issues = await search({
jql: "project = PROJ AND cf[10306] = mp_proj_newsroom AND status = Done"
});
// Object-based (convenience)
const issues = await search({
project: "PROJ",
status: "Done",
labels: ["backend"]
});
Issue Search operation Provides human-readable search API with field resolution