我正在现有的MongoDB结构上构建一个只读API,似乎无法在我的主调用中显示嵌入式文档。
有问题的示例文档(已编辑)..
{
"_id": ObjectId("54a31721372a3b0f00000017"),
"contentType": "document",
"created": ISODate("2014-12-30T21:20:33.408Z"),
"dcsId": "e14.0483",
. . .
,
"metadata": {
"amountTotal": 315.05,
"amountNeto": 252.04,
"partner": ObjectId("53bd4d851899424c0700005e")
},
. . .
合作伙伴就是我想要在文档调用中嵌入...
我的文档架构(用作ura)......
docsSchema = {
'dcsId': {
'type': 'string',
'required': True,
'unique': True
},
'modified': {
'type': 'datetime'
},
'created': {
'type': 'datetime'
},
'downloadUrl': {
'type': 'string'
},
'metadata': {
'partner': {
'type': 'objectid',
'data_relation': {
'resource': 'partners',
'field': '_id',
'embeddable': True
}
},
'documentType': {'type': 'string'},
'amountTotal': {'type': 'float'},
'amountNeto': {"type": "float"}
}
}
我的合作伙伴架构
partnersSchema = {
"name": {"type": "string"}
}
两者的资源定义......
from schemas import coreSchemas
ura = {
'datasource': {
'source': 'documents',
'filter': {'metadata.documentType': 'URA'},
'default_sort': [('_id', 2)],
'projection': {
"metadata.amountNeto": 1,
"metadata.amountTotal": 1,
"metadata.partner": 1,
"created": 1,
"modified": 1,
"dcsId": 1},
'embedding': True
},
'cache_control': 'max-age=10,must-revalidate',
'cache_expires': 10,
'resource_methods': ['GET'],
'scheme': coreSchemas.docsSchema,
'url': 'ura',
"embedded_fields": {"metadata.partner"}
}
partners = {
'datasource': {
'source': 'partners',
'filter': {'deleted': {'$ne': True}},
# 'projection': {'metadata': 1, 'modified':1,'created':1, 'drive.webContentLink' : 1 , 'deleted': {'$ne':True}}
},
'cache_control': 'max-age=10,must-revalidate',
'cache_expires': 10,
'resource_methods': ['GET'],
'scheme': coreSchemas.partnersSchema,
'url': 'partners',
"embedding": True
}
我的电话是" ura"端点只给我合作伙伴的ID(不嵌入)......
我在这里缺少什么?
答案 0 :(得分:0)
目前不支持嵌入子字段(dicts)。来自Document Embedding中的限制段落:
目前,我们支持通过位于任何子文档(嵌套dicts和列表)中的引用嵌入文档。例如,查询/invoices?/embedded={"user.friends":1}将返回一个文档,其中包含用户和他的所有朋友,但仅当用户是子文档而朋友是参考列表时< / strong>(它可能是一个dicts,嵌套dict等列表)。我们不支持多层嵌入。