Şu anda Firestore'u deniyorum ve çok basit bir şeye sıkışıp kaldım: "bir diziyi güncelleme (aka bir alt belge)".
DB yapım süper basit. Örneğin:
proprietary: "John Doe",
sharedWith:
[
{who: "first@test.com", when:timestamp},
{who: "another@test.com", when:timestamp},
],
Yeni kayıtları shareWith
nesneler dizisine aktarmaya çalışıyorum (başarılı olamıyorum) .
Denedim:
// With SET
firebase.firestore()
.collection('proprietary')
.doc(docID)
.set(
{ sharedWith: [{ who: "third@test.com", when: new Date() }] },
{ merge: true }
)
// With UPDATE
firebase.firestore()
.collection('proprietary')
.doc(docID)
.update({ sharedWith: [{ who: "third@test.com", when: new Date() }] })
Hiçbiri çalışmıyor. Bu sorgular dizimin üzerine yazıyor.
Cevap basit olabilir ama bulamadım ...