You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The `list_issues` tool fails with a schema validation error because the `IssueService.listIssues` method returns raw GraphQL response structures for `labels` and `assignees` (nested under `nodes`), whereas the OpenAPI schema expects flat arrays.
24
+
25
+
**Error:**
26
+
`data/issues/0/labels must be array`
27
+
`data/issues/0/assignees must be array`
28
+
29
+
**Fix:**
30
+
Transform the GraphQL response in `IssueService.listIssues` to map `labels.nodes` to `labels` and `assignees.nodes` to `assignees` before returning the data.
0 commit comments