Select-Bitbucket Cmdlet
Searches Bitbucket data.
Syntax
Select-Bitbucket [parameters]
Remarks
The Select-Bitbucket cmdlet allows you to use a syntax similar to SQL SELECT statements to search Bitbucket data.
$conn = Connect-Bitbucket -Workspace 'myworkspaceslug' -Schema 'Information' Select-Bitbucket -Connection $conn -Table "Issues" -Columns @("Title","ContentRaw") -Where "ContentRaw='Bug'"