// Remove item from array let db = Firestore.firestore() db.collection("Products").document("").updateData(["" : FieldValue.arrayRemove(["89024"])]) // increment value db.collection("Products").document("").updateData([ "field_name" : FieldValue.increment(Int64(3)) ]) // union array db.collection("collection_name").document("document_id") documentRef.updateData([ "field_name": FieldValue.arrayUnion(["element1", "element2", "element3"]) ])
Preview:
downloadDownload PNG
downloadDownload JPEG
downloadDownload SVG
Tip: You can change the style, width & colours of the snippet with the inspect tool before clicking Download!
Click to optimize width for Twitter