这是一个有效的Apollo订阅处理程序:
componentDidMount() {
const fromID = Meteor.userId();
const {toID} = this.props;
this.toID = toID;
this.props.data.subscribeToMore({
document: IM_SUBSCRIPTION_QUERY,
variables: {
fromID: fromID,
toID: toID,
},
updateQuery: (prev, {subscriptionData}) => {
if (!subscriptionData.data) {
return prev;
}
const newIM = subscriptionData.data.IMAdded;
// don't double add the message
if (isDuplicateIM(newIM, prev.instant_message)) {
return previousResult;
}
return update(prev, {
instant_message: {
$push: [newIM],
},
});
}
});
}
instant_message
是要显示的对象数组。每个对象都包含一个日期字段。我需要按日期对这个数组中的对象进行排序。
这种方法过去常用于Apollo的beta版本:
//update returns a new "immutable" list
const instant_message = update(previousResult, {instant_message: {$push: [newAppt]}});
instant_message.instant_message = instant_message.instant_message.sort(sortIMsByDateHelper);
return instant_message;
我可以对数组进行排序,但是Apollo会对返回的对象抛出错误 - 例如当render
例程需要它时,在道具中找不到它。
从updateQuery
返回已排序数组的正确方法是什么?提前感谢所有信息。
答案 0 :(得分:0)
事实证明,这不是引起异常的排序。如果返回的对象的__TYPENAME
与此处的其他内容不匹配,则订阅似乎失败 - 此例程中使用的varname(上述代码中的'instant_message')或对象数组的varname在props
中返回到渲染功能。排除所有这些东西,使它们完全一致,修复它。