-->
The document import functionality in Fuego allows users to seamlessly import structured data into Firestore collections. It supports various file formats, including CSV and JSONL, providing options for document creation, updating, and merging.
Select File: Choose the file to import. Supported formats:
Import Options:
__path__
field: If present, this field dictates document paths within Firestore’s hierarchy, allowing for structured organization.__name__
is unavailable. This ensures flexibility in managing unique document IDs.Update Modes:
__DELETE__
to remove attributes dynamically or __SERVER_TIMESTAMP__
for automatic timestamping during import.,
), but users can modify this based on their file structure.__DELETE__
and __SERVER_TIMESTAMP__
will always be interpreted according to Firestore’s specifications, ensuring appropriate data transformations.Once all settings have been configured to the user’s preference, clicking Confirm will initiate the import process. Users can monitor progress and review imported data within the Firestore database. Additionally, to streamline future imports, preferences can be saved for reuse, reducing configuration time and ensuring consistency across multiple data import sessions.
Previous
Dashboard Overview