[][src]Module restq::ast::dml

Structs

BulkDelete

DELETE /product{product_id} 1 2 3

BulkUpdate

PATCH /product{*product_id,name} 1,go pro,1,go pro hero4 2,shovel,2,slightly used shovel

Delete

DELETE /product?product_id=1

Insert
Update

PATCH /product{description="I'm the new description now"}?product_id=1

Enums

Source

Insert can get data from a set of values or from a select statement

Functions

delete

product?product_id=1

insert

product{product_id,created_by,created,is_active}?returning=product_id,name

update

product{description="I'm the new description now",is_active=false}?product_id=1