PublicSeller
Public seller information (limited fields for unauthenticated access).
type PublicSeller implements Node, ObjectWithMetadata {
id: ID!
metadata: [MetadataItem!]!
privateMetadata: [MetadataItem!]!
companyName: String!
slug: String!
status: SellerStatusEnum!
storeDescription: String
storeDescriptionPlainText: String
logoUrl: String
bannerUrl: String
logo(
size: Int
): Image
banner(
size: Int
): Image
products(
before: String
after: String
first: Int
last: Int
): ProductCountableConnection!
variants(
before: String
after: String
first: Int
last: Int
): ProductVariantCountableConnection!
}
Fields
PublicSeller.id ● ID! non-null scalar
The Globally Unique ID of this object
PublicSeller.metadata ● [MetadataItem!]! non-null object
List of public metadata items. Can be accessed without permissions.
PublicSeller.privateMetadata ● [MetadataItem!]! non-null object
List of private metadata items. Requires proper staff permissions to access.
PublicSeller.companyName ● String! non-null scalar
PublicSeller.slug ● String! non-null scalar
PublicSeller.status ● SellerStatusEnum! non-null enum
Seller status
PublicSeller.storeDescription ● String scalar
Seller store description (HTML)
PublicSeller.storeDescriptionPlainText ● String scalar
Seller store description as plain text
PublicSeller.logoUrl ● String scalar
Logo URL
PublicSeller.bannerUrl ● String scalar
Banner URL
PublicSeller.logo ● Image object
Seller logo
PublicSeller.logo.size ● Int scalar
PublicSeller.banner ● Image object
Seller banner
PublicSeller.banner.size ● Int scalar
PublicSeller.products ● ProductCountableConnection! non-null object
List of products from this seller.
PublicSeller.products.before ● String scalar
Returns the items in the list that come before the specified cursor.
PublicSeller.products.after ● String scalar
Returns the items in the list that come after the specified cursor.
PublicSeller.products.first ● Int scalar
Returns the first n items from the list.
PublicSeller.products.last ● Int scalar
Returns the items in the list that come after the specified cursor.
PublicSeller.variants ● ProductVariantCountableConnection! non-null object
List of product variants from this seller.
PublicSeller.variants.before ● String scalar
Returns the items in the list that come before the specified cursor.
PublicSeller.variants.after ● String scalar
Returns the items in the list that come after the specified cursor.
PublicSeller.variants.first ● Int scalar
Returns the first n items from the list.
PublicSeller.variants.last ● Int scalar
Returns the items in the list that come after the specified cursor.
Interfaces
Node interface
An object with a Globally Unique ID
ObjectWithMetadata interface
An object that supports metadata.
Returned By
sellerBySlug query