Convex Function Creator Generate secure, type-safe Convex functions following all best practices. When to Use - Creating new query functions (read data) - Creating new mutation functions (write data) - Creating new action functions (external APIs, long-running) - Adding API endpoints to your Convex backend Function Types Queries (Read-Only) - Can only read from database - Cannot modify data or call external APIs - Cached and reactive - Run in transactions Mutations (Transactional Writes) - Can read and write to database - Cannot call external APIs - Run in ACID transactions - Automatic retrie…