steampipe plugin install shopify

Table: shopify_theme - Query Shopify Themes using SQL

Shopify Themes are the templates that determine the look and feel of a Shopify store. They provide the framework for all the content seen by customers when they visit the online store. Themes can be customized, and Shopify stores can have multiple themes installed, but only one can be published and active at a time.

Table Usage Guide

The shopify_theme table provides insights into the themes used within a Shopify store. As a store owner or a web developer, explore theme-specific details through this table, including theme roles, theme names, and associated metadata. Utilize it to uncover information about themes, such as the currently active theme, the previewable themes, and the customization options available for each theme.

Examples

Basic info

Discover the segments that include the unique identifiers, names, and roles of your Shopify themes to assess their availability for preview. This can be useful in managing and organizing your store's visual presentation.

select
id,
name,
previewable,
role
from
shopify_theme;
select
id,
name,
previewable,
role
from
shopify_theme;

Get the names and IDs of all themes that are previewable

Discover the themes that are previewable to understand which themes are available for preview, helping you to make informed decisions about theme selection.

select
id,
name
from
shopify_theme
where
previewable = true;
select
id,
name
from
shopify_theme
where
previewable = 1;

Get the name and creation date of the oldest processing theme

Explore which theme has been processing for the longest time on your Shopify store. This can help identify potential performance issues or bottlenecks in your store's theme management.

select
name,
created_at
from
shopify_theme
where
processing = true
order by
created_at asc
limit
1;
select
name,
created_at
from
shopify_theme
where
processing = 1
order by
created_at asc
limit
1;

Get the themes that were last updated within the past 30 days

Gain insights into the themes that have been updated recently. This query is particularly useful for keeping track of theme modifications and ensuring your website stays current and functional.

select
name,
id,
updated_at
from
shopify_theme
where
updated_at >= now() - interval '30 days';
select
name,
id,
updated_at
from
shopify_theme
where
updated_at >= datetime('now', '-30 days');

Schema for shopify_theme

NameTypeOperatorsDescription
_ctxjsonbSteampipe context in JSON form, e.g. connection_name.
admin_graphql_api_idtextThe admin graphql API ID.
created_attimestamp with time zoneThe create time of the theme.
idbigint=The ID of the theme.
nametextThe name of the theme.
previewablebooleanWhether the website is previewable.
processingbooleanWhether the website is processing.
roletextThe role of the theme.
theme_store_idbigintThe store ID of the theme.
titletextTitle of the resource.
updated_attimestamp with time zoneThe update time of the theme.

Export

This table is available as a standalone Exporter CLI. Steampipe exporters are stand-alone binaries that allow you to extract data using Steampipe plugins without a database.

You can download the tarball for your platform from the Releases page, but it is simplest to install them with the steampipe_export_installer.sh script:

/bin/sh -c "$(curl -fsSL https://steampipe.io/install/export.sh)" -- shopify

You can pass the configuration to the command with the --config argument:

steampipe_export_shopify --config '<your_config>' shopify_theme