Select-Neo4j Cmdlet
Searches Neo4j data.
Syntax
Select-Neo4j [parameters]
Remarks
The Select-Neo4j cmdlet allows you to use a syntax similar to SQL SELECT statements to search Neo4j data.
$conn = Connect-Neo4j -server "localhost" -port "7474" -user "neo4j" -password "password" Select-Neo4j -Connection $conn -Table "ProductCategory" -Columns @("CategoryId","CategoryName") -Where "CategoryOwner='Bob'"