From 54d0cd2f4e74856f3e9953b94006db728e381021 Mon Sep 17 00:00:00 2001 From: Andy <119136210+AndyMik90@users.noreply.github.com> Date: Fri, 30 Jan 2026 10:46:17 +0100 Subject: [PATCH] auto-claude: subtask-1-1 - Change $teamId type from ID! to String! in the team query (#1627) Fix Linear API GraphQL type mismatch in LINEAR_GET_PROJECTS handler. The team query expects String! for the id parameter, not ID!. Co-authored-by: Claude Opus 4.5 --- apps/frontend/src/main/ipc-handlers/linear-handlers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/frontend/src/main/ipc-handlers/linear-handlers.ts b/apps/frontend/src/main/ipc-handlers/linear-handlers.ts index 8b165c9a..59bba9bc 100644 --- a/apps/frontend/src/main/ipc-handlers/linear-handlers.ts +++ b/apps/frontend/src/main/ipc-handlers/linear-handlers.ts @@ -239,7 +239,7 @@ export function registerLinearHandlers( try { const query = ` - query($teamId: ID!) { + query($teamId: String!) { team(id: $teamId) { projects { nodes {