Backend

Collections and data

How generated apps store records — listings, bookings, customers — in project collections.

Last updated August 12, 2026

Collections are the app’s tables

A booking app might have Services and Appointments. A client portal might have Projects and Files. Agent names these from your prompt and wires the UI to create, list, and update rows.

Access

Say who should read and write: the public, signed-in users, or only the record owner. If a collection should not be public, say that explicitly so it is not left open.

Related