Get the theme configuration and template details of a theme applied to the application.
Response
id
StringThe ID of the property.
applied
BooleanWhether the theme has been applied or not.
assets
AssetsAn object containing information about assets, such as images, files, or other resources used in the application.
available_sections
[AvailableSection]Available sections information.
config
ConfigThe configuration object that contains various settings and parameters. Each property within this object defines a specific configuration setting, allowing for customization and control over different aspects of the system or application.
created_at
StringThe creation timestamp of the theme.
font
FontAn object representing font properties and attributes.
styles
JSONThe styles associated with the theme.
tags
[String]An array of tags associated with the theme.
updated_at
StringThe last update timestamp of the theme.
version
StringThe version of the theme.
is_private
BooleanWhether the theme is private or not.
application_id
StringThe id of the application.
marketplace_theme_id
StringThe id of the theme in the marketplace.
meta
ThemeMetaThe metadata of a theme
name
StringThe name of the theme.
template_theme_id
StringThe id of the template theme.
theme_type
ThemeTypeEnumThe theme or category type associated with the page.
company_id
StringThe company id in which sales channel exists.
src
StringArchived zip containing complete theme code.
Query
1query appliedTheme {2 appliedTheme {3 id4 applied5 available_sections {6 blocks7 label8 name9 props10 }11 config {12 current13 }14 created_at15 font {16 family17 }18 styles19 tags20 updated_at21 version22 is_private23 application_id24 marketplace_theme_id25 meta {26 description27 industry28 slug29 name30 }31 name32 template_theme_id33 theme_type34 company_id35 src36 }37}
Try it
Response
1{2 "appliedTheme": {3 "id": "08a16b83-9094-4e89-8c05-2ccadd5c1c7e",4 "applied": true,5 "available_sections": [6 {7 "blocks": [8 {}9 ],10 "label": "label",11 "name": "A name",12 "props": [13 {}14 ]15 }16 ],17 "config": {18 "current": "current"19 },20 "created_at": "created_at",21 "font": {22 "family": "family"23 },24 "styles": {},25 "tags": [26 "tags"27 ],28 "updated_at": "updated_at",29 "version": "version",30 "is_private": true,31 "application_id": "application_id",32 "marketplace_theme_id": "marketplace_theme_id",33 "meta": {34 "description": "A description",35 "industry": [36 "industry"37 ],38 "slug": "slug",39 "name": "A name"40 },41 "name": "A name",42 "template_theme_id": "template_theme_id",43 "theme_type": "vue2",44 "company_id": "company_id",45 "src": "src"46 }47}
Was this section helpful?