Attachments
Query Attachments in Gmail.
テーブル固有の情報
利用可能なAttachments をクエリします。
Select
ドライバーはGmail REST API を使用して、MessageId とIncludeAttachmentData カラムを参照する検索条件を処理します。ドライバーは他のフィルタを、ドライバー内のクライアントサイドで処理します。
- MessageId '=' 演算子をサポート。
- IncludeAttachmentData '=' 演算子をサポート。
例えば、次のクエリはサーバーサイドで処理されます。
SELECT * FROM Attachments WHERE MessageId = 123 SELECT * FROM Attachments WHERE IncludeAttachmentData = true
Columns
Name | Type | References | Description |
Id [KEY] | String | The X-Attachment-Id of the message part header. | |
MessageId [KEY] | String | The ID of the message containing the attachment. | |
Filename | String | The name of the attachment file. | |
Size | Long | The size in bytes of the attachment. | |
Data | String | The conent of the attachment. |
Pseudo-Columns
SELECT ステートメントのWHERE 句では、疑似カラムフィールドを使用して、データソースから返されるタプルを詳細に制御することができます。
Name | Type | Description | |
IncludeAttachmentData | Boolean | A boolean controling whether to include the attachment data or not. (Default: true) |