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 mybatis-plus. NGBATIS 是一款针对 NebulaGraph + Springboot 的数据库 ORM 框架。借鉴于 MyBatis 的使用习惯进行开发。https://graph-cn.github.io/ngbatis-docs/
我有个需求就是
match (v:
${ params.tagValue }
) where v.${ params.tagValue }
.${ params.paramEn }
== ${ ng.valueFmt(params.paramValue) } return count(v) 参数我是不知道类型的所以入参的时候给的string,但是如果图库存的是int的话是查不到的 这种情况fmt这里能解决吗 或者说有别的更好的方式做这种需求吗