Skip to content

Project Search with JQL #114

Discussion options

You must be logged in to vote

The question is exactly how you want to search. With JQL or search for a project by name or key.

In your example, there is a project search by name or key, the correct use of this API:

const projects = await client.projects.searchProjects({
  query: 'PROJECTKEY',
});

The issues search by JQL looks like this:

const issues = await client.issueSearch.searchForIssuesUsingJql({
  jql: 'assignee=currentuser()',
});

Replies: 1 comment

Comment options

You must be logged in to vote
0 replies
Answer selected by MrRefactoring
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Category
Q&A
Labels
None yet
2 participants