Cmdlets for Neo4j

Build 24.0.9062

Update-Neo4j Cmdlet

Parameters   Output Objects  

Neo4j データを更新します。

Syntax

Update-Neo4j [parameters]

Remarks

Update-Neo4j コマンドレットを使って、SQL UPDATE ステートメントに似た構文を用いてNeo4j データを更新できます。

$conn = Connect-Neo4j -server "localhost" -port "7474" -user "neo4j" -password "password"
Update-Neo4j -Connection $conn -Table "ProductCategory" -Columns @("CategoryName") -Values @("Jon Doe") -Id "6"
Where パラメータはテーブルの主キーを指定するためにも使われます。
Update-Neo4j -Connection $conn -Table "ProductCategory" -Columns @("CategoryName") -Values @("Jon Doe") -Where "Id = '6'"
主キーは、パイプライン上でコマンドレットに渡すこともできます。
Select-Neo4j -Connection $conn -Table ProductCategory -Where "CategoryOwner = 'Bob'" | Update-Neo4j -Columns @("CategoryOwner") -Values @("Bob 2")

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