Project Search with JQL #114
-
What is the proper formatting when using a query in search? With regular API url it would be |
Beta Was this translation helpful? Give feedback.
Answered by
MrRefactoring
Apr 14, 2021
Replies: 1 comment
-
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()',
}); |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
MrRefactoring
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
The issues search by JQL looks like this: