Anson
Anson
## Problem Dose wg support Multilevel routing? ## Suggested solution I try to add sub dirctory 'user' and add graphql operation file 'list.graphql' in the sub dirctory,and hope that wg...
``` func main() { log.Println("Connecting to server...") // Connect to server c, err := client.DialTLS("imap.qq.com:993", nil) if err != nil { log.Fatal(err) } log.Println("Connected") // Don't forget to logout defer...
when i use graphql operation with parameter,it doesn't work,like this:  but if don't use paramter,it works,like this: 
请问该项目是否有使用文档,应该如何编译呢?
1,参考 prisma 的[用例](https://github.com/prisma/prisma-engines/blob/main/query-engine/connector-test-kit-rs/query-engine-tests/tests/queries/aggregation/avg.rs),编写单元测试。 2,完善典型用例的文档
Fireboom 预览页使用了 [rapidocweb](https://rapidocweb.com/) 组件,特殊场景下会导致谷歌浏览器卡死,详情见下图。  **复现条件** ```gql mutation MyQuery($data: ft_PostCreateInput!) { ft_createOnePost(data: $data) { id title } } ```
golang钩子中支持事务操作 **可能的方案:** - 推荐:基于prisma 引擎实现; -- [Transactions and batch queries](https://www.prisma.io/docs/orm/prisma-client/queries/transactions)  - 不推荐:引入第三方orm库实现; **其它信息:** 关联 https://github.com/fireboomio/fireboom-engine/issues/7 当前已经实现了@transaction 指令,[详情](https://docs.fireboom.io/ji-chu-ke-shi-hua-kai-fa/api-gou-jian/chang-jian-yong-li#shi-wu)。 ```gql mutation MyQuery @transaction { rb_createOneT(data: { name: "22211122"}) { id name...
之前的超图面板不好用,当数据源过多时,不容易定位所需要的operation。  参考[ apollo 的面板](https://www.apollographql.com/docs/graphos/explorer/embed-explorer/)重新实现一套。 

1.0版本任意一次OPERATION的编辑都会触发全量的OPERATION编译,造成巨大的性能浪费。新版本将全量编译改为了增量编译,极大提升了OPERATION的编译速度! 这取决于项目OPERATION的数量,OPEARTION越多,提升效果越显著! 参考:[增量编译](https://docs.fireboom.io/geng-xin-ri-zhi/v2.0-geng-xin-shuo-ming#zeng-liang-bian-yi)