{{ $('Webhook').data.json }} wont work anymore for data linking after latest update

{{ $(‘Webhook’).data.json }} wont work anymore for data linking after latest update

use {{ $(‘Webhook’).first().json }} or {{ $(‘Webhook’).last().json }} instead.

i dont know its an update, or bug.

This appears to be related to changes in how webhook data is accessed in recent n8n updates. Instead of using `{{ $(‘Webhook’).data.json }}`, you should now use `{{ $(‘Webhook’).first().json }}` or `{{ $(‘Webhook’).last().json }}` to access the JSON data from the webhook. This change was likely made to handle multiple webhook responses more consistently. If you’re still experiencing issues, try updating to the latest n8n version and verify your workflow setup.