The QuerySnapshot
instance.
An array of all the documents in the GeoQuerySnapshot.
True if there are no documents in the GeoQuerySnapshot.
The native QuerySnapshot
instance.
The number of documents in the GeoQuerySnapshot.
Returns an array of the documents changes since the last snapshot. If this is the first snapshot, all documents will be in the list as added changes.
Array of DocumentChanges.
Enumerates all of the documents in the GeoQuerySnapshot.
A callback to be called with a DocumentSnapshot
for
each document in the snapshot.
The this
binding for the callback.
Generated using TypeDoc
A
GeoQuerySnapshot
contains zero or moreQueryDocumentSnapshot
objects representing the results of a query. The documents can be accessed as an array via thedocs
property or enumerated using theforEach
method. The number of documents can be determined via theempty
andsize
properties.