ThemeFiles
Represents files in an online store theme.
Table-Specific Information
Select
The provider uses the Shopify API to process WHERE clause conditions built with the following columns and operators. The provider processes other filters client-side within the provider.
- Filename supports the '=, IN' comparison operators.
- ThemeId supports the '=, IN' comparison operators.
For example, the following queries are processed server-side:
SELECT * FROM ThemeFiles WHERE Filename = 'Val1'
SELECT * FROM ThemeFiles WHERE ThemeId = 'Val1'
Delete
You can delete entries by specifying the following columns:
Filename, ThemeId
Columns
| Name | Type | ReadOnly | References | Description |
| Filename [KEY] | String | True |
The unique filename identifier of the theme file. | |
| ThemeId [KEY] | String | True |
The ID of the theme this file belongs to. | |
| ContentType | String | True |
The content type of the theme file. | |
| Size | Long | True |
The size of the theme file in bytes. | |
| ChecksumMd5 | String | True |
The MD5 checksum of the theme file for data integrity. | |
| CreatedAt | Datetime | True |
The date and time when the theme file was created. | |
| UpdatedAt | Datetime | True |
The date and time when the theme file was last updated. | |
| BodyContent | String | True |
The body of the theme file. | |
| BodyContentBase64 | String | True |
The body of the theme file, base64 encoded. | |
| BodyUrl | String | True |
The short lived url for the body of the theme file. |