QueryResults Output Object (Invoke-GoogleSheets Cmdlet)
The results of the query.
Syntax
PSObject QueryResultsRemarks
When executing a search, the results will be returned to the pipeline in a PSObject for each row, one row at a time. Each row object contains the columns of the table with their corresponding values. The row object also contains the table and the connection, which makes it easy to input these values to other cmdlets through a pipeline. Below is an example of a row object in JSON form:
PS C:\> $conn = Connect-GoogleSheets PS C:\> $row = Select-GoogleSheets -Connection $conn -Table "Spreadsheet1_Sheet1" -Columns (Id, Column1) -Where "Column2 = 'Bob'" | select -first 1 PS C:\> $row | ConvertTo-Json { "Connection": { }, "Table": "Spreadsheet1_Sheet1", "Columns": [ ], "Id": "MyId", "Column1": "MyColumn1" }