Cmdlets for MYOB

Build 24.0.9062

QueryResults Output Object (Select-MYOB Cmdlet)

クエリの結果。

Syntax

PSObject QueryResults

Remarks

検索を実行すると、結果がPSObject のパイプラインに一度に一行ずつ返されます。各行オブジェクトは対応する値を持つテーブルのカラムを含みます。行オブジェクトにはテーブルと接続も含まれ、パイプライン経由でこれらの値をほかのcmdlet に簡単にインプットできます。以下に、JSON 形式の行オブジェクトの例を示します。

PS C:\> $conn  = Connect-MYOB If using an online instance: -InitiateOAuth "GETANDREFRESH" -OAuthClientId "YourClientId" -OAuthClientSecret "YourClientSecret" -CallbackURL "http://localhost:33333" -CompanyFileId "327eed10-9615-4e5e-bd9e-ae2cc00e2c70" -User "companyFileUser" -Password "companyFilePassword" If using an on premise instance:   -InitiateOAuth "OFF" -URL "http://localhost:8080/accountright" -CompanyFileId "327eed10-9615-4e5e-bd9e-ae2cc00e2c70" -User "companyFileUser" -Password "companyFilePassword"
PS C:\> $row = Select-MYOB -Connection $conn -Table "Accounts" -Columns (Id, Name)  -Where "Type = 'Bank'" | select -first 1
PS C:\> $row | ConvertTo-Json
{
  "Connection":  {

  },
    "Table":  "Accounts",
    "Columns":  [

    ],
    "Id":  "MyId",
    "Name":  "MyName"
}

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