我的问题是读取嵌套对象的属性,该对象位于其他嵌套对象内。
图形QL
type Mapping {
id: ID!
partnerSegmentId: ID!
ctSegmentId: CtSegment!
}
type PartnerSegment {
id: ID!
name: String!
platformId: Int!
partner: Partner!
}
type Partner {
id: ID!
name: String!
}
一旦我尝试像这样查询它:
{
allMappings {
partnerSegmentId {
id
name
partner {
id
}
}
}
}
我收到:
{
"data": {
"allMappings": [
null
]
},
"errors": [
{
"message": "Cannot return null for non-nullable field Partner.name.",
"locations": [
{
"line": 8,
"column": 9
}
],
"path": [
"allMappings",
0,
"partnerSegmentId",
"partner",
"name"
]
}
]
}
映射架构
const mappingSchema = new mongoose.Schema(
{
partnerSegmentId: {
type: mongoose.Schema.Types.ObjectId,
ref: 'PartnerSegment',
required: [true, 'Mapping must have partner segment id.']
},
ctSegmentId: {
type: mongoose.Schema.Types.ObjectId,
ref: 'CtSegment',
required: [true, 'Mapping must have CT segment id.']
}
},
{ timestamps: true }
);
我试图分别阅读Partner、PartnerSegment和Mapping模型。一切正常。你知道我应该在哪里查找问题的根源吗?我检查了mongodb文档和ID,看起来不错。我想这是我的模型的错。
如果你想仔细看看
project repo
.