diff --git a/docs/courses/level-two/chapter-4.md b/docs/courses/level-two/chapter-4.md index 7da9020a9..124af6443 100644 --- a/docs/courses/level-two/chapter-4.md +++ b/docs/courses/level-two/chapter-4.md @@ -78,7 +78,7 @@ In the previous chapters, you've built several small workflows. Now, pick one of { "parameters": { "channel": "channelname", - "text": "=This workflow {{$node[\"Error Trigger\"].json[\"workflow\"][\"name\"]}}failed.\nHave a look at it here: {{$node[\"Error Trigger\"].json[\"execution\"][\"url\"]}}", + "text": "=This workflow {{$(\"Error Trigger\").item.json[\"workflow\"][\"name\"]}}failed.\nHave a look at it here: {{$(\"Error Trigger\").item.json[\"execution\"][\"url\"]}}", "attachments": [], "otherOptions": {} }, diff --git a/docs/embed/managing-workflows.md b/docs/embed/managing-workflows.md index 87b1f2253..1bdc4e54d 100644 --- a/docs/embed/managing-workflows.md +++ b/docs/embed/managing-workflows.md @@ -240,7 +240,7 @@ The response will contain the JSON data of the selected workflow: { "parameters": { "webhookUri": "https://discord.com/api/webhooks/865213348202151968/oD5_WPDQwtr22Vjd_82QP3-_4b_lGhAeM7RynQ8Js5DzyXrQEnj0zeAQIA6fki1JLtXE", - "text": "=This week we have {{$json[\"totalBooked\"]}} booked orders with a total value of {{$json[\"bookedSum\"]}}. My Unique ID: {{$node[\"HTTP Request\"].parameter[\"headerParametersUi\"][\"parameter\"][0][\"value\"]}}" + "text": "=This week we have {{$json[\"totalBooked\"]}} booked orders with a total value of {{$json[\"bookedSum\"]}}. My Unique ID: {{ $(\"HTTP Request\").params.headerParameters.parameters[0].value }}" }, "name": "Discord", "type": "n8n-nodes-base.discord", diff --git a/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md b/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md index 2b986c499..c829e51ab 100644 --- a/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md +++ b/docs/integrations/builtin/app-nodes/n8n-nodes-base.grist.md @@ -38,7 +38,7 @@ Create a new column in your Grist table with the formula `$id`. The **Get All** operation returns the Row ID of each record along with the fields. -You can get it with the expression `{{$node["GristNodeName"].json["id"]}}`. +You can get it with the expression `{{$("GristNodeName").item.json.id}}`. ## Filter records when using the Get All operation diff --git a/docs/integrations/builtin/core-nodes/n8n-nodes-base.splitinbatches.md b/docs/integrations/builtin/core-nodes/n8n-nodes-base.splitinbatches.md index 27bd897a4..850328c88 100644 --- a/docs/integrations/builtin/core-nodes/n8n-nodes-base.splitinbatches.md +++ b/docs/integrations/builtin/core-nodes/n8n-nodes-base.splitinbatches.md @@ -86,9 +86,9 @@ Copy the workflow file above and paste into your instance, or manually build it ### Check that the node has processed all items -To check if the node still has items to process, use the following expression: `{{$node["Loop Over Items"].context["noItemsLeft"]}}`. This expression returns a boolean value. If the node still has data to process, the expression returns `false`, otherwise it returns `true`. +To check if the node still has items to process, use the following expression: `{{$("Loop Over Items").context["noItemsLeft"]}}`. This expression returns a boolean value. If the node still has data to process, the expression returns `false`, otherwise it returns `true`. ### Get the current running index of the node -To get the current running index of the node, use the following expression: `{{$node["Loop Over Items"].context["currentRunIndex"];}}`. +To get the current running index of the node, use the following expression: `{{$("Loop Over Items").context["currentRunIndex"];}}`.