Select-JIRA Cmdlet
Searches Jira data.
Syntax
Select-JIRA [parameters]
Remarks
The Select-JIRA cmdlet allows you to use a syntax similar to SQL SELECT statements to search Jira data.
$conn = Connect-JIRA -User 'admin' -APIToken '123abc' -Url 'https://yoursitename.atlassian.net' Select-JIRA -Connection $conn -Table "Projects" -Columns @("Key","Name") -Where "Id='10000'"