Query Postgresql PowerShell

$orders = Invoke-PostgreSQL -Connection $postgresql -Query 'SELECT * FROM Orders WHERE ShipCountry = @ShipCountry' -Params @{'@ShipCountry'='USA'}
Fair Fox