我有一个集合和一个变异来添加一个新项目。在成功突变后,我还没有能够让Relay Modern更新UI。
我使用以下PaginationContainer
道具获得query:
设置
{
query: graphql`
fragment ContactsList_query on WPQuery {
id
contacts: posts(
first: $count,
after: $cursor
post_type: $postType,
order: $order,
category_name: $categoryName
) @connection(key: "ContactsList_contacts" ) {
edges {
node {
id
...ContactListItem_contact
}
}
pageInfo {
hasNextPage
endCursor
}
}
}
`
},
正确取出。然后,我发现了一个突变,将联系人添加到此列表中。
配置RANGE_ADD
或updater:
回调技术都不起作用。
我像这样触发了这种突变
onSave = (fields) => {
insertPost(
fields.toJS(),
this.props.query.id,
this.props.relay.environment
);
}
没有错误,只是没有更新。
const mutation = graphql`
mutation InsertPostMutation(
$data: InsertPostInput!
) {
insert_post(input: $data) {
wp_query {
id
}
postEdge {
node {
id
title
}
}
}
}
`;
export default function insertPost(data, id, environment) {
const variables = {
data,
};
commitMutation(
environment,
{
mutation,
variables,
onCompleted: (response, errors) => {
console.log('Response received from server.')
},
onError: err => console.error(err),
configs: [{
type: 'RANGE_ADD',
parentID: id,
connectionInfo: [{
key: 'ContactsList_contacts',
rangeBehavior: 'append',
}],
edgeName: 'postEdge'
}],
// updater: (store) => {
// // const inspector = new RecordSourceInspector(store)
// const payload = store.getRootField('insert_post')
// const newEdge = payload.getLinkedRecord('postEdge')
// const proxy = store.get(id)
// // Conn is always undefined here
// const conn = ConnectionHandler.getConnection(proxy, 'ContactsList_contacts')
// ConnectionHandler.insertEdgeAfter(conn, newEdge)
// }
},
);
}
答案 0 :(得分:0)
嗯,我能够通过更改行
来解决这个问题 @connection(key: "ContactsList_contacts")
要
@connection(key: "ContactsList_contacts", filters: [])
似乎无法找到连接......
https://facebook.github.io/relay/docs/pagination-container.html#connection-directive
然后使用updater
函数找到了连接。