Hi, i have a n8n workflow that uploads yo youtube, but the upload result, i cant use it, even though the result s not undefined, but i cant use it in my other node
so there is a youtube video upload node, wich returns an uploadd id, then the workflow got passed down to be used into google sheets, but it seems when i drag and drop the result t always says undefined, even though there is something
Hey! The drag and drop expression is probably pointing to the wrong path, click on the upload video node and check its actual output JSON because the field might not be called uploadId, it could be id or something nested like snippet.resourceId.videoId. Once you see the real field name in the output panel just manually fix the expression in your Google Sheets node to match, something like {{ $('upload video').item.json.id }} or whatever the actual path is
Hi @adrian1 Welcome!
For that kind of issue, i would say that try to use javascript modulating kind of, basically calling that variable in a different way something like this: {{ $('YourVariable').first().item.json.uploadId }} and something like that, the point is to not use the direct initialized path.