我的文档中存储了非托管三元组。当我使用返回文件时
var doc = cts.doc('/document/location/doc.json');
doc;
我得到了我的医生,附上了三元组。
{
"name": "Place name",
"address": "Place address"
"triple": {
"subject": "/document/location/doc.json",
"predicate": "contains",
"object": "/locations/buildings/A000001.json"
},
"triple": {
"subject": "/document/location/doc.json",
"predicate": "contains",
"object": "/locations/buildings/rooms/offices/A000003.json"
}
}
如何返回没有三元组的文档?我想在不暴露太多数据库信息的情况下将结果发送到我的中间层。