本文整理匯總了TypeScript中apollo-cache.ApolloCache.performTransaction方法的典型用法代碼示例。如果您正苦於以下問題:TypeScript ApolloCache.performTransaction方法的具體用法?TypeScript ApolloCache.performTransaction怎麽用?TypeScript ApolloCache.performTransaction使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類apollo-cache.ApolloCache
的用法示例。
在下文中一共展示了ApolloCache.performTransaction方法的1個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的TypeScript代碼示例。
示例1: markMutationResult
public markMutationResult(mutation: {
mutationId: string;
result: ExecutionResult;
document: DocumentNode;
variables: any;
updateQueries: { [queryId: string]: QueryWithUpdater };
update: ((proxy: DataProxy, mutationResult: Object) => void) | undefined;
}) {
// Incorporate the result from this mutation into the store
if (!graphQLResultHasError(mutation.result)) {
const cacheWrites: Cache.WriteOptions[] = [];
cacheWrites.push({
result: mutation.result.data,
dataId: 'ROOT_MUTATION',
query: mutation.document,
variables: mutation.variables,
});
if (mutation.updateQueries) {
Object.keys(mutation.updateQueries)
.filter(id => mutation.updateQueries[id])
.forEach(queryId => {
const { query, updater } = mutation.updateQueries[queryId];
// Read the current query result from the store.
const { result: currentQueryResult, complete } = this.cache.diff({
query: query.document,
variables: query.variables,
returnPartialData: true,
optimistic: false,
});
if (!complete) {
return;
}
// Run our reducer using the current query result and the mutation result.
const nextQueryResult = tryFunctionOrLogError(() =>
updater(currentQueryResult, {
mutationResult: mutation.result,
queryName: getOperationName(query.document) || undefined,
queryVariables: query.variables,
}),
);
// Write the modified result back into the store if we got a new result.
if (nextQueryResult) {
cacheWrites.push({
result: nextQueryResult,
dataId: 'ROOT_QUERY',
query: query.document,
variables: query.variables,
});
}
});
}
this.cache.performTransaction(c => {
cacheWrites.forEach(write => c.write(write));
});
// If the mutation has some writes associated with it then we need to
// apply those writes to the store by running this reducer again with a
// write action.
const update = mutation.update;
if (update) {
this.cache.performTransaction(c => {
tryFunctionOrLogError(() => update(c, mutation.result));
});
}
}
}