OBJECT

Shop

Shop represents a collection of the general settings and information about the shop.

link GraphQL Schema definition

  • type Shop {
  • # The url pointing to the endpoint to vault credit cards.
  • cardVaultUrl: URL!
  • # List of the shop’ collections.
  • #
  • # Arguments
  • # first: [Not documented]
  • # after: [Not documented]
  • # sortKey: [Not documented]
  • # reverse: [Not documented]
  • # query: Supported filter parameters:
  • #
  • # - `title`
  • #
  • # - `collection_type`
  • #
  • # - `updated_at`
  • #
  • # - `published_status`
  • collections(
  • first: Int!,
  • after: String,
  • sortKey: CollectionSortKeys,
  • reverse: Boolean,
  • query: String
  • ): CollectionConnection!
  • # The three-letter code for the currency that the shop accepts.
  • currencyCode: CurrencyCode!
  • # A description of the shop.
  • description: String
  • # A string representing the way currency is formatted when the currency isn’t
  • # specified.
  • moneyFormat: String!
  • # The shop’s name.
  • name: String!
  • # The shop’s primary domain.
  • primaryDomain: Domain!
  • # The shop’s privacy policy.
  • privacyPolicy: ShopPolicy
  • # List of the shop’ products.
  • #
  • # Arguments
  • # first: [Not documented]
  • # after: [Not documented]
  • # sortKey: [Not documented]
  • # reverse: [Not documented]
  • # query: Supported filter parameters:
  • #
  • # - `title`
  • #
  • # - `product_type`
  • #
  • # - `vendor`
  • #
  • # - `created_at`
  • #
  • # - `updated_at`
  • #
  • # - `tag`
  • products(
  • first: Int!,
  • after: String,
  • sortKey: ProductSortKeys,
  • reverse: Boolean,
  • query: String
  • ): ProductConnection!
  • # The shop’s refund policy.
  • refundPolicy: ShopPolicy
  • # The shop's Shopify Payments account id.
  • shopifyPaymentsAccountId: String
  • # The shop’s terms of service.
  • termsOfService: ShopPolicy
  • }