Guest User

Untitled

a guest
Feb 17th, 2018
73
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.33 KB | None | 0 0
  1. // Get the FieldValue object
  2. var FieldValue = require('firebase-admin').firestore.FieldValue;
  3. // Create a document reference
  4. var cityRef = db.collection('cities').doc('BJ');</code>
  5. // Remove the 'capital' field from the document
  6. var removeCapital = cityRef.update({
  7. capital: FieldValue.delete()
  8. });
Add Comment
Please, Sign In to add comment