From 72c97c81c0c6692d6d762b15b6a9f09b8e06a6d9 Mon Sep 17 00:00:00 2001 From: TianKai Ma Date: Wed, 2 Sep 2026 13:22:34 +0800 Subject: [PATCH] fix(graphql): update MCP operation manifest count after young events ops catalog.young_event.list.v1 and catalog.young_event.get.v1 raised the registered operation count from 47 to 49; the main-only MCP integration job caught the stale assertion after #997 merged. --- tests/integration/graphql-mcp-resources.test.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/integration/graphql-mcp-resources.test.ts b/tests/integration/graphql-mcp-resources.test.ts index 34cdf2c72..257267894 100644 --- a/tests/integration/graphql-mcp-resources.test.ts +++ b/tests/integration/graphql-mcp-resources.test.ts @@ -80,7 +80,7 @@ describe("GraphQL MCP operations", () => { }), ]), }); - expect((manifest.operations as unknown[]).length).toBe(47); + expect((manifest.operations as unknown[]).length).toBe(49); expect(JSON.stringify(manifest)).not.toContain('"document"'); });