We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents f9c6dde + f2f2dc2 commit a514a35Copy full SHA for a514a35
packages/firestore/src/local/local_store.ts
@@ -943,20 +943,6 @@ export class LocalStore {
943
});
944
}
945
946
- /**
947
- * Returns the keys of the documents that are associated with the given
948
- * target id in the remote table.
949
- */
950
- remoteDocumentKeys(targetId: TargetId): Promise<DocumentKeySet> {
951
- return this.persistence.runTransaction(
952
- 'Remote document keys',
953
- 'readonly',
954
- txn => {
955
- return this.targetCache.getMatchingKeysForTargetId(txn, targetId);
956
- }
957
- );
958
959
-
960
private applyWriteToRemoteDocuments(
961
txn: PersistenceTransaction,
962
batchResult: MutationBatchResult,
0 commit comments