I’m trying to access all documents from my firestore collection
JavaScript
x
15
15
1
const app = initializeApp(firebaseConfig);
2
const db = getFirestore(app);
3
4
5
async function getTodos() {
6
try {
7
const todoRef = collection(db, 'todos');
8
let allTodos = await getDoc(todoRef);
9
console.log(allTodos)
10
11
} catch (err) {
12
console.log(err)
13
}
14
}
15
but it’s throwing this err
FirebaseError: Expected type 'Tc', but it was: a custom Ac object
Advertisement
Answer
The getDoc()
method is used to get a single document and takes a DocumentReference as a parameter. Here todoRef
is a CollectionReference and to fetch multiple documents you must use getDocs()
instead:
JavaScript
1
3
1
const todoRef = collection(db, 'todos');
2
let allTodos = await getDocs(todoRef);
3