Firestore
オブジェクトAを、messageCollectionに追加する。
code:js
firebase.firestore().collection(message).add(A);
データベースに対するクエリを作る
code:javascript
const query = firebase.firestore()
.collection("messages")
.orderBy("timestamp", "desc")
.limit(12);
そのクエリに該当するデータの変化を追い続ける。
code:javascript
//変化があるたびに発火する。
query.onSnapshot((snapshot) => {
for (const change of snapshot.docChanges()){
change.type //変化の種類
change.doc.data() // 変更後のデータを得られる。
}
}
firestoreの編集ルールの制定