mirror of
https://github.com/n8n-io/n8n-docs.git
synced 2026-03-29 02:18:42 +07:00
13 lines
240 B
Markdown
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
|
|
```
|