Anson

Results 65 issues of 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: ![image](https://user-images.githubusercontent.com/20960032/190584717-ac9f9686-a170-408b-b42a-253b68c38fa4.png) but if don't use paramter,it works,like this: ![image](https://user-images.githubusercontent.com/20960032/190584885-9aeeeeed-a7e7-43e3-b4ee-6bcb2cf4c808.png)

请问该项目是否有使用文档,应该如何编译呢?

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/) 组件,特殊场景下会导致谷歌浏览器卡死,详情见下图。 ![image](https://github.com/fireboomio/fireboom/assets/20960032/3c16ac58-46eb-4f52-ab2d-82e1b0e44909) **复现条件** ```gql mutation MyQuery($data: ft_PostCreateInput!) { ft_createOnePost(data: $data) { id title } } ```

bug

golang钩子中支持事务操作 **可能的方案:** - 推荐:基于prisma 引擎实现; -- [Transactions and batch queries](https://www.prisma.io/docs/orm/prisma-client/queries/transactions) ![image](https://github.com/fireboomio/fireboom/assets/20960032/c37beace-3727-4ace-bc7d-b76c0f758b59) - 不推荐:引入第三方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...

enhancement

之前的超图面板不好用,当数据源过多时,不容易定位所需要的operation。 ![Image](https://github.com/fireboomio/fireboom/assets/20960032/f508e29a-948b-4c84-8723-9f5b66b4d361) 参考[ apollo 的面板](https://www.apollographql.com/docs/graphos/explorer/embed-explorer/)重新实现一套。 ![Image](https://github.com/fireboomio/fireboom/assets/20960032/d5aa737e-4854-4917-bf1a-55a0d63bc61d)

![Image](https://github.com/fireboomio/fireboom/assets/20960032/a6840e8b-930a-45a8-b430-89634f8c881c)

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)