DiscussionAttachments
Query a list of attachments for a discussion.
Select
The 本製品 will use the Garoon API to process WHERE clause conditions built with the following columns and operators. The rest of the filter is executed client side within the 本製品.
- DiscussionId supports the '=' operator and is required for querying.
For example, the following query is processed server side:
SELECT * FROM DiscussionAttachments WHERE DiscussionId = 3
Columns
| Name | Type | Description |
| Id [KEY] | String | ID of the file. |
| DiscussionId | String | ID of the discussion to retrieve attachments for. |
| Name | String | Name of the file. |
| Size | Long | Size of the file in bytes. |
| CreatedAt | Datetime | Creation date and time. |
| UpdatedAt | Datetime | Update date and time. |
| CreatorId | String | Creator's Garoon user ID. |
| CreatorCode | String | Creator's login name. |
| CreatorName | String | Creator's display name. |
| UpdaterId | String | Updater's Garoon user ID. |
| UpdaterCode | String | Updater's login name. |
| UpdaterName | String | Updater's display name. |