Members
batchQueue
A queue of batches to be written.
closed
Whether this BulkWriter instance is closed. Once closed, it cannot be opened again.
maxBatchSize
The maximum number of writes that can be in a single batch.
Methods
close() → {Promise.<void>}
Commits all enqueued writes and marks the BulkWriter instance as closed.
After calling close(), calling any method wil throw an error.
Returns a Promise that resolves when there are no more pending writes. The Promise will never be rejected. Calling this method will send all requests. The promise resolves immediately if there are no pending writes.
Example
let bulkWriter = firestore.bulkWriter();
bulkWriter.create(documentRef, {foo: 'bar'});
bulkWriter.update(documentRef2, {foo: 'bar'});
bulkWriter.delete(documentRef3);
await close().then(() => {
console.log('Executed all writes');
});
create(documentRef, data) → {Promise.<WriteResult>}
Create a document with the provided data. This single operation will fail if a document exists at its location.
Parameters:
| Name | Type | Description |
|---|---|---|
documentRef |
DocumentReference |
A reference to the document to be created. |
data |
T |
The object to serialize as the document. |
Example
let bulkWriter = firestore.bulkWriter();
let documentRef = firestore.collection('col').doc();
bulkWriter
.create(documentRef, {foo: 'bar'})
.then(result => {
console.log('Successfully executed write at: ', result);
})
.catch(err => {
console.log('Write failed with: ', err);
});
});
delete(documentRef, preconditionopt) → {Promise.<WriteResult>}
Delete a document from the database.
Parameters:
| Name | Type | Attributes | Description | ||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
documentRef |
DocumentReference |
A reference to the document to be deleted. |
|||||||||
precondition |
Precondition |
<optional> |
A precondition to enforce for this delete. Properties
|
Example
let bulkWriter = firestore.bulkWriter();
let documentRef = firestore.doc('col/doc');
bulkWriter
.delete(documentRef)
.then(result => {
console.log('Successfully deleted document');
})
.catch(err => {
console.log('Delete failed with: ', err);
});
});
(async) flush() → {Promise.<void>}
Commits all writes that have been enqueued up to this point in parallel.
Returns a Promise that resolves when all currently queued operations have been committed. The Promise will never be rejected since the results for each individual operation are conveyed via their individual Promises.
The Promise resolves immediately if there are no pending writes. Otherwise,
the Promise waits for all previously issued writes, but it does not wait
for writes that were added after the method is called. If you want to wait
for additional writes, call flush() again.
Example
let bulkWriter = firestore.bulkWriter();
bulkWriter.create(documentRef, {foo: 'bar'});
bulkWriter.update(documentRef2, {foo: 'bar'});
bulkWriter.delete(documentRef3);
await flush().then(() => {
console.log('Executed all writes');
});
set(documentRef, data, optionsopt) → {Promise.<WriteResult>}
Write to the document referred to by the provided DocumentReference. If the document does not exist yet, it will be created. If you pass SetOptions., the provided data can be merged into the existing document.
Parameters:
| Name | Type | Attributes | Description | ||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
documentRef |
DocumentReference |
A reference to the document to be set. |
|||||||||||||
data |
T |
The object to serialize as the document. |
|||||||||||||
options |
SetOptions |
<optional> |
An object to configure the set behavior. Properties
|
Example
let bulkWriter = firestore.bulkWriter();
let documentRef = firestore.collection('col').doc();
bulkWriter
.set(documentRef, {foo: 'bar'})
.then(result => {
console.log('Successfully executed write at: ', result);
})
.catch(err => {
console.log('Write failed with: ', err);
});
});
update(documentRef, dataOrField, …preconditionOrValues) → {Promise.<WriteResult>}
Update fields of the document referred to by the provided DocumentReference. If the document doesn't yet exist, the update fails and the entire batch will be rejected.
The update() method accepts either an object with field paths encoded as keys and field values encoded as values, or a variable number of arguments that alternate between field paths and field values. Nested fields can be updated by providing dot-separated field path strings or by providing FieldPath objects.
A Precondition restricting this update can be specified as the last argument.
Parameters:
| Name | Type | Attributes | Description |
|---|---|---|---|
documentRef |
DocumentReference |
A reference to the document to be updated. |
|
dataOrField |
UpdateData | string | FieldPath |
An object containing the fields and values with which to update the document or the path of the first field to update. |
|
preconditionOrValues |
Precondition | * | string | FieldPath |
<repeatable> |
An alternating list of field paths and values to update or a Precondition to restrict this update |