Files
n8n-docs/docs/code-examples/methods-variables-examples/workflow.md
Deborah Barnard 3d6c76b1dd edits to ref
2022-09-08 18:52:12 +01:00

13 lines
240 B
Markdown

# `$workflow`
Gives information about the current workflow.
```js
// Boolean. Whether the workflow is active (true) or not (false)
$workflow.active
// Number. The workflow ID.
$workflow.id
// String. The workflow name.
$workflow.name
```