Cmdlets for Kintone

Build 23.0.8839

QueryResults Output Object (Select-Kintone Cmdlet)

The results of the query.

Syntax

PSObject QueryResults

Remarks

When executing a search, the results will be returned to the pipeline in a PSObject for each row, one row at a time. Each row object contains the columns of the table with their corresponding values. The row object also contains the table and the connection, which makes it easy to input these values to other cmdlets through a pipeline. Below is an example of a row object in JSON form:

PS C:\> $conn  = Connect-Kintone -User 'myuseraccount' -Password 'mypassword' -URL 'http://subdomain.domain.com' -GuestSpaceId 'myspaceid'
PS C:\> $row = Select-Kintone -Connection $conn -Table "Comments" -Columns (CreatorName, Text)  -Where "AppId = '1354841'" | select -first 1
PS C:\> $row | ConvertTo-Json
{
  "Connection":  {

  },
    "Table":  "Comments",
    "Columns":  [

    ],
    "CreatorName":  "MyCreatorName",
    "Text":  "MyText"
}

Copyright (c) 2024 CData Software, Inc. - All rights reserved.
Build 23.0.8839