We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
代码生成器生成的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 .
The text was updated successfully, but these errors were encountered:
No branches or pull requests
现象
代码生成器生成的Dgraph表结构不正确,某个Type下的所有属性都会生成为DgraphType下的属性。name是属性,b是行为
schema如下,
生成的表结构如下
期望
schema中需要显性的区分属性和行为,这样才能更准确的生成DgraphType
The text was updated successfully, but these errors were encountered: