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
#7 提供了Dgraph初始化操作
{ "name": "arc.dgraph.init", "type": "java.lang.Boolean", "description": "init dgraph schema by dgraph define.", "defaultValue": "false" }, { "name": "arc.dgraph.drop-all", "type": "java.lang.Boolean", "description": "drop all data! & schema! when init.", "defaultValue": "false" }
同时开启初始化及drop-all操作时,表结构Schema丢失
arc: dgraph: urls: localhost:39081 init: true drop-all: true
只删除数据,表结构按照schema完成初始化
dgraph4j 提供了更细粒度的drop控制
The text was updated successfully, but these errors were encountered:
wangyuheng
Successfully merging a pull request may close this issue.
背景
#7 提供了Dgraph初始化操作
现象
同时开启初始化及drop-all操作时,表结构Schema丢失
期望
只删除数据,表结构按照schema完成初始化
原因
其他
dgraph4j 提供了更细粒度的drop控制
The text was updated successfully, but these errors were encountered: