-->
Export Firestore collections to JSON while preserving complex data structures, nested objects, and all Firestore data types.
Maintain all nested objects, arrays, and complex document hierarchies in JSON format.
Preserve Firestore data types including timestamps, geopoints, and references.
Export subcollections as part of the hierarchical JSON structure. (coming soon)
Apply queries and filters to export specific documents or data ranges.
Handle large collections efficiently with progress tracking and memory optimization.
Configure JSON output formatting including indentation and structure options. Fuego also supports JSONL format for streaming large datasets.
[
{
"id": "doc1",
"data": {
"name": "John",
"profile": {
"age": 30,
"active": true
}
}
}
]
{
"doc1": {
"name": "John",
"profile": {
"age": 30,
"active": true
}
}
}
Export Firestore collections to JSON format while preserving all data types and structures. Perfect for backups and migrations.