firestore return the content of an aarray nodejs

Solutions on MaxInterview for firestore return the content of an aarray nodejs by the best coders in the world

showing results for - "firestore return the content of an aarray nodejs"
Ambroise
22 Mar 2016
1admin.firestore().collection("User").doc(uid_player_1).collection("User Info").doc("UsernameToken").get().then(queryResult =>{
2
3 console.log(queryResult.data());
4
5});
6