Open AnsonCode opened 10 months ago
golang钩子中支持事务操作
可能的方案:
推荐:基于prisma 引擎实现; -- Transactions and batch queries
不推荐:引入第三方orm库实现;
其它信息:
关联 https://github.com/fireboomio/fireboom-engine/issues/7
当前已经实现了@transaction 指令,详情。
mutation MyQuery @transaction { rb_createOneT(data: { name: "22211122"}) { id name } rb_createOneRole(data: {code: "a111111", name: "1111"}) { code name } }
golang钩子中支持事务操作
可能的方案:
推荐:基于prisma 引擎实现; -- Transactions and batch queries
不推荐:引入第三方orm库实现;
其它信息:
关联 https://github.com/fireboomio/fireboom-engine/issues/7
当前已经实现了@transaction 指令,详情。