Get a value of a specific trello tag

and a small improvement:

return {json: item.labels.find(field => field.id == '60081df737fe772901150276').name}

added {json: ... }

and alternative code if you’re using the Function instead of the Function Item Node:

return [{json:items[0].json.labels.find(field => field.id == '60081df737fe772901150276')}]
1 Like