Introduction to Cloud Firestore
Explore the fundamentals of Cloud Firestore, a flexible NoSQL database by Firebase. Learn to organize data into collections and documents, perform CRUD operations, and use real-time listeners. Understand offline data support and how to enable and secure Firestore in your Firebase project.
We'll cover the following...
Cloud Firestore is a flexible, scalable, real-time NoSQL cloud database provided by Firebase for storing application data. Data is stored as
How it works
Cloud Firestore stores data as documents. A document is a unit of storage made of a set of key-value pairs. It supports various data types—strings, numbers, booleans, arrays—and subcollections. ...