我正在使用http://orientdb.com/docs/last/Import-from-JSON.html处的说明将json文件加载到orientdb中。一切当然都有效。我现在正在尝试向边添加属性,我真的不知道如何更改输入和etl文件以识别边缘属性。我想在边缘有一个名为“friendsSince”的房产。从csv导入时,人们正在讨论edgeFields属性,但我不确定从JSON导入时如何使用它。提前谢谢!
答案 0 :(得分:0)
您可以在边缘变换器中使用edgeFields。例如:
"edge":{
"class":"Account",
"joinFieldName":"friends",
"lookup":"Account.id",
"direction":"out",
"edgeFields": { "YOR_PROPERTY": "${input.YOR_PROPERTY}" },
"unresolvedLinkAction":"NOTHING"
}