Data Export
Overview
Section titled “Overview”Export data from any collection to CSV or JSON format.
How to Export
Section titled “How to Export”- Open a collection
- Click the Export button in the toolbar
- Choose format (CSV or JSON)
- Optionally filter before exporting to export a subset
Configuration
Section titled “Configuration”const productsCollection: EntityCollection = { slug: "products", exportable: true, // Enable (default: true) // Or with config: exportable: { additionalFields: [ { key: "computed_margin", title: "Margin", builder: ({ entity }) => { return entity.values.price - entity.values.cost; } } ] }, properties: { /* ... */ }};Next Steps
Section titled “Next Steps”- Data Import — Import data from files