Type parameters
-
T
Index
Constructors
Protected constructor
-
Returns DocumentSnapshot
Properties
exists
Property of the DocumentSnapshot
that signals whether or not the data
exists. True if the document exists.
id
Property of the DocumentSnapshot
that provides the document's ID.
metadata
Metadata about the DocumentSnapshot
, including information about its
source and local modifications.
ref
The DocumentReference
for the document included in the DocumentSnapshot
.
Methods
data
-
Retrieves all fields in the document as an Object. Returns 'undefined' if the document doesn't exist.
By default,
FieldValue.serverTimestamp()
values that have not yet been set to their final value will be returned asnull
. You can override this by passing an options object.Parameters
-
Optional options: SnapshotOptions
An options object to configure how data is retrieved from the snapshot (e.g. the desired behavior for server timestamps that have not yet been set to their final value).
Returns T | undefined
An Object containing all fields in the document or 'undefined' if the document doesn't exist.
-
get
-
Retrieves the field specified by
fieldPath
. Returnsundefined
if the document or field doesn't exist.By default, a
FieldValue.serverTimestamp()
that has not yet been set to its final value will be returned asnull
. You can override this by passing an options object.Parameters
-
fieldPath: string | FieldPath
The path (e.g. 'foo' or 'foo.bar') to a specific field.
-
Optional options: SnapshotOptions
An options object to configure how the field is retrieved from the snapshot (e.g. the desired behavior for server timestamps that have not yet been set to their final value).
Returns any
The data at the specified field location or undefined if no such field exists in the document.
-
isEqual
-
Returns true if this
DocumentSnapshot
is equal to the provided one.Parameters
-
other: DocumentSnapshot<T>
The
DocumentSnapshot
to compare against.
Returns boolean
true if this
DocumentSnapshot
is equal to the provided one. -
A
DocumentSnapshot
contains data read from a document in your Firestore database. The data can be extracted with.data()
or.get(<field>)
to get a specific field.For a
DocumentSnapshot
that points to a non-existing document, any data access will return 'undefined'. You can use theexists
property to explicitly verify a document's existence.