diff --git a/website/docs/connect-data/reference/querying-google-sheets.md b/website/docs/connect-data/reference/querying-google-sheets.md index 057ab1b1c8..1c550540f3 100644 --- a/website/docs/connect-data/reference/querying-google-sheets.md +++ b/website/docs/connect-data/reference/querying-google-sheets.md @@ -146,13 +146,29 @@ This command updates a **Sheet Row(s)** entity. The following section lists all #### Update Row Object
A JSON-formatted object whose key/value pairs represent the columns and values from your table record. You must include a rowIndex key to specify which record to update. If you fetched the record from another Google Sheets query, this index value should be available on its rowIndex property.
-
Example: -
{`{
-    ...{{ UsersTable.selectedRow }}, // includes rowIndex key
-    "status": "accepted"
-}`}
+ +
+ +*Example:* + +```js +//For JSON Form: {{JSONForm1.formData.id}} +//For Table inline editing: {{ Table1.updatedRow.id }} + +{{ + { + rowIndex: Table1.selectedRow.rowIndex, // includes rowIndex key + "id": Form1.data.TextID, + "name": Form1.data.InputName, + "country": Form1.data.SelectCountry + + } +}} +``` +
+ ### Delete One This command deletes a given entity: **Sheet Row(s)**, **Spreadsheet**, or **Sheet**. The following section lists all the fields available for the **Delete One** command.