Linear
The Linear node lets you manage issues and projects in Linear. A single node supports multiple operations — select the operation you need and the relevant fields appear.
All operations require a Linear connection configured with your API key.
Operations
List Issues
Fetch issues from your Linear workspace.
| Field | Description | Notes |
|---|---|---|
| Team ID | Filter issues by team | Optional. Supports templates |
| Limit | Maximum results (1–250) | Default: 50 |
Get Issue
Retrieve a single issue by ID.
| Field | Description | Notes |
|---|---|---|
| Issue ID | Linear issue ID | Required. Supports templates |
Create Issue
Create a new issue.
| Field | Description | Notes |
|---|---|---|
| Team ID | Team to create the issue in | Required. Supports templates |
| Title | Issue title | Required. Supports templates |
| Description | Issue description (Markdown) | Optional. Supports templates |
| Priority | No priority, Urgent, High, Medium, Low | Optional |
| Assignee ID | User ID to assign | Optional. Supports templates |
| State ID | Workflow state ID | Optional. Supports templates |
Update Issue
Update an existing issue.
| Field | Description | Notes |
|---|---|---|
| Issue ID | Linear issue ID | Required. Supports templates |
| Title | New title | Optional. Supports templates |
| Description | New description | Optional. Supports templates |
| Priority | New priority | Optional |
| Assignee ID | New assignee | Optional. Supports templates |
| State ID | New workflow state | Optional. Supports templates |
List Projects
Fetch projects from your workspace.
| Field | Description | Notes |
|---|---|---|
| Limit | Maximum results (1–250) | Default: 50 |
Custom GraphQL
Run a custom GraphQL query against the Linear API.
| Field | Description | Notes |
|---|---|---|
| GraphQL Query | The query or mutation to execute | Required. Supports templates |
| Variables (JSON) | JSON variables for the query | Optional. Supports templates |
Streaming
List Issues and List Projects support streaming — each item is emitted individually to downstream nodes.
Common Patterns
Sync GitHub Issues to Linear
- GitHub API — list open issues from a repo
- Linear (Create Issue) — create corresponding Linear issues
Weekly Issue Report
- Cron — run weekly
- Linear (List Issues) — fetch issues
- Transform — format as report
- Email (SMTP) — email the summary