0
現在、リレーのモダンで突然変異を起こしている問題を見つけました。我々は、多くのエントリを含む日記を持っています。ユーザーが日記のある日にエントリを追加するたびに、エントリを作成する前に日記を作成します。すべてが期待通りに機能しますが、UIは突然変異の直後には更新されません。ここにコードがあります。次の突然変異を行った後にリレーが更新されない
AddDiaryMutation
import { commitMutation, graphql } from 'react-relay';
const mutation = graphql`
mutation AddDiaryMutation($input: AddDiaryInput!) {
createDiary(input: $input) {
diary {
id
...EntryList_entries
}
}
}
`;
let clientMutationId = 0;
const commit = (environment, { date }, callback) =>
commitMutation(environment, {
mutation,
variables: {
input: {
date,
clientMutationId: clientMutationId++
}
},
onCompleted: response => {
const id = response.createDiary.diary.id;
callback(id);
}
});
export default { commit };
AddEntryMutationは、エントリを追加するAddDiaryMutation応答からIDを取得します。
import { commitMutation, graphql } from 'react-relay';
import { ConnectionHandler } from 'relay-runtime';
const mutation = graphql`
mutation AddEntryMutation($input: AddEntryInput!) {
createEntry(input: $input) {
entryEdge {
node {
id
project {
name
}
speaker {
name
}
}
}
}
}
`;
function sharedUpdater(store, diaryId, newEdge) {
const diaryProxy = store.get(diaryId);
const conn = ConnectionHandler.getConnection(diaryProxy,
'EntryList_entries');
ConnectionHandler.insertEdgeAfter(conn, newEdge);
}
let clientMutationId = 0;
const commit = (environment, { diaryId, ...rest }, callback) =>
commitMutation(environment, {
mutation,
variables: {
input: {
...rest,
clientMutationId: clientMutationId++
}
},
updater: store => {
const payload = store.getRootField('createEntry');
const newEdge = payload.getLinkedRecord('entryEdge');
sharedUpdater(store, diaryId, newEdge);
},
onCompleted:() => callback()
});
export default { commit };
するentrylistフラグメント
fragment EntryList_entries on Diary {
entries(first: 20) @connection(key: "EntryList_entries", filters: [])
{
edges {
node {
...Entry_entry
}
}
}
}
エントリフラグメント
fragment Entry_entry on Entry {
id
project {
name
}
speaker {
name
}
}