TriggerCategories
Returns trigger categories used to organize and group triggers.
Table-Specific Information
Select
The following queries are processed server-side while other filters are processed client-side within the provider.SELECT * FROM TriggerCategories WHERE Id = '10498753811996'
Insert
The Name column is required to insert.
INSERT INTO TriggerCategories (Name, Position) VALUES ('Test CData', 2)
Update
You must specify the Id of the trigger category to update. All fields that are not readonly are optional.
UPDATE TriggerCategories SET Name = 'Updated Test' WHERE Id = '10498983125788'
Delete
You must specify the Id of the trigger category to delete it.
DELETE FROM TriggerCategories WHERE Id = '10498983125788'
Columns
| Name | Type | ReadOnly | References | Description |
| Id [KEY] | String | True |
The Id automatically assigned when a trigger category is created. | |
| Name | String | False |
The name of the trigger category. | |
| Position | Integer | False |
The position of the trigger category. | |
| CreatedAt | Datetime | True |
The date and time when the trigger category was created. | |
| UpdatedAt | Datetime | True |
The date and time when the trigger category was last updated. |