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
为了提升开发效率,加快schema领域模型验证。 希望在根据GraphQL Schema自动生成Java代码(#5) 的同时,可以自动生成数据库结构语句,并可根据需要自动执行数据库初始化(#7)
解析GraphQL Schema后,根据转换逻辑生成Dgraph Schema
注意Arc框架限制
<domainClass>: string . <dgraph.graphql.schema>: string . <PROJECT.name>: string . <PROJECT.description>: string . <PROJECT.category>: [string] . <PROJECT.createTime>: dateTime . <PROJECT.milestones>: [uid] . <MILESTONE.name>: string . <MILESTONE.status>: string . <USER.name>: string . type Project { domainClass dgraph.graphql.schema PROJECT.name PROJECT.description PROJECT.category PROJECT.createTime PROJECT.milestones } type Milestone { domainClass dgraph.graphql.schema MILESTONE.name MILESTONE.status } type User { domainClass dgraph.graphql.schema USER.name }
The text was updated successfully, but these errors were encountered:
wangyuheng
Successfully merging a pull request may close this issue.
概念:
背景
为了提升开发效率,加快schema领域模型验证。
希望在根据GraphQL Schema自动生成Java代码(#5) 的同时,可以自动生成数据库结构语句,并可根据需要自动执行数据库初始化(#7)
方案
解析GraphQL Schema后,根据转换逻辑生成Dgraph Schema
注意Arc框架限制
验收
The text was updated successfully, but these errors were encountered: