Skip to content
Last update: March 5, 2025

White Labeling Settings query

This query allows you to retrieve white labeling settings.

Arguments

Argument Description
organizationId String The Id of the organization.
userId String The Id of the user.
storeId String The Id of the store.
cultureName String A language to retrieve data in.

Possible returns

Possible return Description
WhiteLabelingSettingsType The white labeling settings for the given parameters.

Examples

{
  whiteLabelingSettings(organizationId: "f081c52234754c9c8229aa42d6a19220", storeId: "Electronics", cultureName:"en-US") {
    userId
    organizationId
    logoUrl
    secondaryLogoUrl
    faviconUrl
    favicons {
      rel
      type
      sizes
      href
    }
    themePresetName
    footerLinks {
      title
      url
      childItems {
        title
        url
      }
    }
  }
}
{
  store(storeId: "Electronics") {
    settings
    {
      modules {
        moduleId
        settings {
          name
          value
        }
      }
    }
  }
}