データ取得コレクション全部

firebase.initializeApp(firebaseConfig)

const firestore = firebase.firestore()

const querySnapshot = await firestore.collection('p0st')

// firebase.firestore.QuerySnapshotのインスタンスを取得
console.log(querySnapshot.size)
console.log(querySnapshot.empty)
console.log(querySnapshot.docs.map((postDoc) => postDoc.id))
querySnapshot.forEach((postDoc) => {
  console.log([postDoc.id, JSON.stringify(postDoc.data())])
})