GCP - Cloud Firestore and Bigtable
Which of the following is the correct syntax to get a reference to a document named
user123 inside a collection users in Firestore using Node.js?user123 inside a collection users in Firestore using Node.js?collection('users') to access the collection, then doc('user123') to get the document.firestore.doc(full/path) works for existing paths, but incorrect paths, reversed order, or misusing doc() on document references fail. Chaining collection().doc() is recommended.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions