Select-Shopify Cmdlet
Searches Shopify data.
Syntax
Select-Shopify [parameters]
Remarks
The Select-Shopify cmdlet allows you to use a syntax similar to SQL SELECT statements to search Shopify data.
$conn = Connect-Shopify -InitiateOAuth 'GETANDREFRESH' -ShopURL 'https://yourshopname.myshopify.com' -OAuthClientId 'myoauthclientid' -OAuthClientSecret 'myoauthclientsecret' Select-Shopify -Connection $conn -Table "Customers" -Columns @("FirstName","Id") -Where "FirstName='jdoe1234'"