ngbatis icon indicating copy to clipboard operation
ngbatis copied to clipboard

NGBATIS is a database ORM framework base NebulaGraph + spring-boot, which takes advantage of the mybatis’ fashion development, including some de-factor operations in single table and vertex-edge, like...

Results 88 ngbatis issues
Sort by recently updated
recently updated
newest added

类似Mybatis_plus,很多xml文件其实没有用到的,目前不创建Mapper对应的xml文件 是会报错的

nql如下: MATCH p = shortestPath((v1:user)-[e*..5]->(v2:user)) \ WHERE id(v1) == 'user^1' and id(v2) == 'user^9' \ RETURN relationships(p); 执行结果如下: 如何在mapper里将路径映射成自定义的关系列表?

Q&A

集成项目禁用 com.alibaba.fastjson; 引入ngbatis后,去除改依赖,就没法正常使用了; 2、 beelt-core疑似也冲突 严重: Servlet.service() for servlet [dispatcherServlet] in context with path [] threw exception [Handler dispatch failed; nested exception is java.lang.NoSuchMethodError: org.beetl.core.GroupTemplate.getTemplate(Ljava/lang/String;)Lorg/beetl/core/Template;] with root cause java.lang.NoSuchMethodError: org.beetl.core.GroupTemplate.getTemplate(Ljava/lang/String;)Lorg/beetl/core/Template;...

![image](https://github.com/nebula-contrib/ngbatis/assets/26647264/636ccc39-2215-4336-b8d4-0cc6fef4a235) ![image](https://github.com/nebula-contrib/ngbatis/assets/26647264/83aa43f0-5a45-4660-ae43-fe1b72b8df67)

插入边的时候,需要rank,rank的语法中带了 @, 跟ngbatis的特殊符号@冲突了,有解决办法吗

查询语句: MATCH (n)-[r:transfer]->(n2) WHERE id(n) == $p0 AND id(n2) == $p1 RETURN r 本地执行没问题,到服务器上跑的时候,执行到一定查询次数就会卡住不动了,也没有日志提示

NebulaDaoBasic中看起来没有支持根据起点和终点和rank值删除边 想通过自定义语句的方式来支持,但是一直提示语法错误 DELETE EDGE e_rela $p0 -> $p1 @ $p2

Q&A

> Issue from qq feedback. Such as: ```java List path(); ``` ```java public class ComplexEntity { private Object v1; private Object e; private Object v2; } ``` ```sql MATCH (v1)-[e:...