Store by ID

storeById #

storeById(storeId: String) Store

Example #

query storeById($storeId: String!){
  storeById(storeId: $storeId) {
    id
    name
    title
    description
    tags
    metaName
    metaDescription
    metaTags
    logo
    logoPath
    favicon
    faviconPath
    bannerImage
    bannerImagePath
    isOpen
    isCustomerLoyaltyEnabled
    currency
    website
    supportEmail
    supportPhone
    createdAt
    updatedAt
    street
    streetOptional
    city
    state
    postcode
    location {
      id
      name
      shortCode
    }
  }
}

Try It Now