Answers for "get documents in a collection firestore"

0

get all documents in collection firestore

async getMarker() {
    const snapshot = await firebase.firestore().collection('events').get()
    return snapshot.docs.map(doc => doc.data());
}
Posted by: Guest on July-26-2021

Code answers related to "get documents in a collection firestore"

Browse Popular Code Answers by Language