dugenkui
dugenkui
The target of ID is to represent a unique identifier or cache key. Boolean type is not a suitable type. > The ID scalar type represents a unique identifier, often...
> I think we are ready to move it to Stage2, but we still, need to follow the procedure and present it on WG. @dugenkui03 Can you join WG today?...
@benjie The PR was created to add myself to agenda, and I am glad to introduce myself briefly.
graphql-calculator 理论上可以与基于 graphql-java 的所有组件集成、包括 dgs、但我不清楚具体的使用情况。请问你们已经开始使用 dgs 了吗? 如果是在进一步的能力扩展中遇到了问题我可以尽快在 [graphql-calculator-samples](https://github.com/graphql-calculator/graphql-calculator-samples) 提供与 dgs 的集成示例代码。
下边示例参考了graphql-java-servlet的[官方示例代码](https://github.com/graphql-java-kickstart/samples/tree/master/servlet-hello-world)。集成步骤如下: 1. 使用`DefaultGraphQLSourceBuilder` 创建 `GraphQLSource`; 2. 创建graphql-java-kickstart `GraphQLConfiguration`对象时所用的`GraphQL`引擎相关对象都使用`GraphQLSource` 对象中数据即可,主要有 queryExecutionStrategy、Instrumentation、GraphQLSchema 和 PreparsedDocumentProvider。 这是官方示例上添加计算能力的代码改动,完整代码见[graphql-calculator-samples](https://github.com/graphql-calculator/graphql-calculator-samples/tree/main/src/main/java/kickstart/servlet)。 ```java private GraphQLConfigurationProvider() { /** * step 1: 使用 graphql calculator 生成GraphQL计算执行引擎 */ DefaultGraphQLSourceBuilder graphqlSourceBuilder = new...
@andeya Please help review this mr
### About HookContext `HandleMessage` will invoke `hooks#CreateHookContext` to create `HookContext` to save request context. Also, you can always return same object to do some statistical thing: ```golang type globalHookContext struct...
@StarpTech this will be fixed in #165
I try the server code you present( call them in ToolHandlerFunc), and it send notification successfully. there might be two reasons: 1. **the place you execute server code** could not...
From your code provided in your last comment, I know that you are sending notification in tool function, I think the code is correct. There is a example [example code](https://github.com/dugenkui03/mcp-go/pull/2...