根据this answer,应该可以在胖查询中指定带参数的边,但我无法使其工作。这是我的变异配置和胖查询:
table = 12
for i in range(1,11):
print(i*table)
问题是结果查询在边缘字段中不包含任何参数:
getFatQuery() {
return Relay.QL`
fragment on AddCommentPayload {
commentEdge(sort:[{createdAt: ASC}])
customer {
id
comments
}
}
`;
}
getConfigs() {
return [{
type: 'RANGE_ADD',
parentName: 'customer',
parentID: this.props.customer.id,
connectionName: 'comments',
edgeName: 'commentEdge',
rangeBehaviors() {
return 'append';
},
}];
}