[firestore] Correctly support dates, geopoints, DocumentSnapshots and other types in startAt, startAfter, etc

This commit is contained in:
Chris Bianca
2017-10-31 22:18:07 +00:00
parent 6ae0049338
commit 270279551a
8 changed files with 102 additions and 42 deletions

View File

@@ -83,10 +83,6 @@ export default class CollectionReference {
return this._query.orderBy(fieldPath, directionStr);
}
select(varArgs: string[]): Query {
return this._query.select(varArgs);
}
startAfter(fieldValues: any): Query {
return this._query.startAfter(fieldValues);
}