Skip to content

Adding Count to be accessible to the console. #6644

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 13 additions & 1 deletion packages/firestore-compat/src/index.console.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,11 @@ import {
Firestore as FirestoreExp,
FirestoreError,
_EmptyAuthCredentialsProvider,
_EmptyAppCheckTokenProvider
_EmptyAppCheckTokenProvider,
Query as ExpQuery,
getCountFromServer
} from '@firebase/firestore';
import { Compat } from '@firebase/util';

import {
Firestore as FirestoreCompat,
Expand Down Expand Up @@ -98,6 +101,15 @@ export class Firestore extends FirestoreCompat {
new MemoryPersistenceProvider()
);
}

INTERNAL = {
delete: () => this.terminate(),
count: (query: Compat<ExpQuery<unknown>>) => {
return getCountFromServer(query._delegate).then(response => {
return response.data().count;
});
}
};
}

function databaseIdFromFirestoreDatabase(
Expand Down