Select-Kintone Cmdlet
Searches Kintone data.
Syntax
Select-Kintone [parameters]
Remarks
The Select-Kintone cmdlet allows you to use a syntax similar to SQL SELECT statements to search Kintone data.
$conn = Connect-Kintone -User 'myuseraccount' -Password 'mypassword' -URL 'http://subdomain.domain.com' -GuestSpaceId 'myspaceid' Select-Kintone -Connection $conn -Table "Comments" -Columns @("CreatorName","Text") -Where "AppId='1354841'"