对于MarkLogic中的任何类型的模板驱动提取(TDE),如何将从tde:node-data-extract
函数获得的结果转换为RDF/JSON格式?此方法返回的JSON格式不符合RDF/JSON,因此我不能直接使用它将三元组插入到另一个数据库中。在本例中,我不想将三元组插入到我要应用模板的同一个数据库中,我只想使用该模板从XML数据创建三元组。
下面是我从tde:node-data-extract
函数获得的JSON输出的一个例子:
{
"document/pt/document/39627370": [{
"triple": {
"subject": "http://www.example.com/document/id/39627370",
"predicate": "http://www.example.com/typeOf",
"object": {
"datatype": "http://www.w3.org/2001/XMLSchema#string",
"value": "http://www.example.com/document"
}
}
},
{
"triple": {
"subject": "http://www.example.com/publisher/Oxford_University_Press",
"predicate": "http://www.example.com/typeOf",
"object": {
"datatype": "http://www.w3.org/2001/XMLSchema#string",
"value": "http://www.example.com/publisher"
}
}
}
}
}
发布于 2022-02-09 16:41:13
使用sem.triple()
将每个“三重”属性转换为一个三重对象。然后使用sem.triple
序列化sem.rdfSerialize()
对象的数组。
发布于 2022-02-09 19:46:38
在John和Mads的帮助下,假设您在查询控制台中,我发现了一个很好的变化。$docs
是任何文档序列,$template
是TDE模板。
let $jsontriples := tde:node-data-extract($docs, $template)
for $key in map:keys($jsontriples)
let $entry := map:get($jsontriples, $key)
return $entry["triple"]
这将返回查询控制台结果选项卡中自动序列化为Turtle格式的三元组,您可以切换到JSON或Text。在不自动执行序列化的情况下(例如,不使用查询控制台时),我认为John的回答是最正确的。
https://stackoverflow.com/questions/71051631
复制相似问题