代码生成器生成的schema.dgraph属性不正确
Opened this issue · 0 comments
B-Five commented
现象
代码生成器生成的Dgraph表结构不正确,某个Type下的所有属性都会生成为DgraphType下的属性。name是属性,b是行为
schema如下,
type A{
name:String
b(String:bId):B
}
生成的表结构如下
<A.id>: string .
<A.b>: uid .
期望
schema中需要显性的区分属性和行为,这样才能更准确的生成DgraphType
<A.id>: string .