Overview
The Collection Node defines database table schemas. It specifies what data structure your tables will have, including field names, types, and validation rules.
Collection nodes define schemas only - they don’t connect to other nodes. Other nodes reference collections by name.
Required Configuration
Table Name
The name of your database table (e.g., users, products, orders)
Schema Fields
At least one field beyond the auto-generated id field. Each field needs:
- Field Name - Non-empty identifier
- Field Type - Select at least one data type
- Required/Optional - Must be explicitly set
How to Use
- Create Collection Node - Define your table schema
- Reference by Name - In Query/Mutation nodes, set the Collection field to your table name
- No Direct Connections - Collection nodes don’t connect to other nodes