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.
- 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`
- (
- Int!, :
- String, :
- CollectionSortKeys, :
- Boolean, :
- String :
- ): CollectionConnection!
- # The three-letter code for the currency that the shop accepts.
- CurrencyCode! :
- # A description of the shop.
- String :
- # A string representing the way currency is formatted when the currency isn’t
- # specified.
- String! :
- # The shop’s name.
- String! :
- # The shop’s primary domain.
- Domain! :
- # The shop’s privacy policy.
- 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`
- (
- Int!, :
- String, :
- ProductSortKeys, :
- Boolean, :
- String :
- ): ProductConnection!
- # The shop’s refund policy.
- ShopPolicy :
- # The shop's Shopify Payments account id.
- String :
- # The shop’s terms of service.
- ShopPolicy :
- }