Select-MarkLogic Cmdlet
Searches MarkLogic data.
Syntax
Select-MarkLogic [parameters]
Remarks
The Select-MarkLogic cmdlet allows you to use a syntax similar to SQL SELECT statements to search MarkLogic data.
$conn = Connect-MarkLogic -User 'myusername' -Password 'mypassword' -Server 'marklogic' Select-MarkLogic -Connection $conn -Table "[CData].[main].Customer" -Columns @("Name","TotalDue") -Where "CustomerId='12345'"