UpdateType
Type of local change.
Enumeration Members
Enumeration Member | Value | Description |
---|---|---|
DELETE | "DELETE" | Delete existing row. Contains the id. Generated by DELETE statements. |
PATCH | "PATCH" | Update existing row. Contains the id, and value of each changed column. Generated by UPDATE statements. |
PUT | "PUT" | Insert or replace existing row. All non-null columns are included in the data. Generated by INSERT statements. |