Search
Workflow module Search from package @jetbrains/youtrack-scripting-api
This module contains functionality that lets you search for issues in YouTrack.
Module functions
search
static search(folder, query, user)
Returns issues that match a search query.If a sort order is not specified explicitly in the query, the issues that are returned are sorted in random order.
var search = require('@jetbrains/youtrack-scripting-api/search');
...
var query = 'for: me State: {In Progress} issue id: -' + issue.id;
var inProgress = search.search(issue.project, query, ctx.currentUser);
if (inProgress.isNotEmpty()) {
// Do smth with a found set of issues.
}
Parameters:
Name | Type | Description |
---|---|---|
folder | | The project, tag, or saved search to set as the search context.If the value for this parameter is not provided, the search includes all issues.This is equivalent to a search that is performed in the user interface with the context set to Everything. |
query | | A YouTrack search query. |
user | | The user account that executes the search query.The list of issues that is returned excludes issues that the specified user does not have permission to view.If the value for this parameter is not provided, the search query is executed on behalf of the current user. |