Overview of Toasty example capabilities
mainToasty provides several specialized examples to demonstrate different feature sets:
- quickstart-blog: Defining models/keys and CRUD operations over
has_many/belongs_torelationships. - forum-relationships:
has_onerelations, bidirectional traversal, preloading with.include(), multi-stepviarelations, and association filters. - product-search: Data reading including filter expressions, sorting,
limit/offset, cursor pagination, column projection, and composite indexes. - cms-article-fields: Field options like create/update defaults, auto timestamps,
Json<T>, queryableVec<scalar>, deferred columns, and custom table/column names. - crm-embedded: Embedded value types (flattened structs, tagged-union enums, newtype keys) and partial updates with
stmt::patch. - store-operations: Writes including interactive transactions, savepoints, batch inserts, query-based updates/deletes, and raw SQL.
- service-ops: Project layout involving shared models in a library, an application binary, and a migration CLI.