Select-BigCommerce Cmdlet
Searches BigCommerce data.
Syntax
Select-BigCommerce [parameters]
Remarks
The Select-BigCommerce cmdlet allows you to use a syntax similar to SQL SELECT statements to search BigCommerce data.
$conn = Connect-BigCommerce -OAuthClientId -OAuthClientSecret -CallbackURL 'http://localhost:33333' -StoreId 'YoUrSToREId' Select-BigCommerce -Connection $conn -Table "Customers" -Columns @("FirstName","LastName") -Where "Column2='Bob'"