lesstif / php-jira-rest-client

PHP classes interact Jira with the REST API.
Other
510 stars 263 forks source link

Gett All Issues from Project #357

Closed jonathansigg closed 2 years ago

jonathansigg commented 4 years ago

if i do $proj = new ProjectService(); $p = $proj->get('MyProject');

I get a Object with all projects. How can i List all issues in each component?

lesstif commented 4 years ago

hi @jonathansigg

if you want to get all issues from components, you will use JQL(Jira query language).

check out jql example here(https://github.com/lesstif/php-jira-rest-client#perform-an-advanced-search)

thanks.