(fieldValues: DocumentSnapshot<T> | FieldValue[])
| 557 | startAt(snapshot: DocumentSnapshot<T>): Query; |
| 558 | startAt(fieldValues: FieldValue[]): Query; |
| 559 | startAt(fieldValues: DocumentSnapshot<T> | FieldValue[]): Query { |
| 560 | if (Array.isArray(fieldValues)) { |
| 561 | return Query.fromNative(this.native.startAt(fieldValues.map((value) => value.native))); |
| 562 | } else { |
| 563 | return Query.fromNative(this.native.startAt(fieldValues?.native)); |
| 564 | } |
| 565 | } |
| 566 | |
| 567 | where(fieldPath: FieldPath | keyof DocumentData, opStr: WhereFilterOp, value: any): Query { |
| 568 | let query; |
nothing calls this directly
no test coverage detected