Skip to main content

PublicSeller

No description

type PublicSeller implements Node, ObjectWithMetadata {
id: ID!
companyName: String!
slug: String!
logo(
size: Int
): Image
status: SellerStatus!
banner(
size: Int
): Image
products(
offset: Int
before: String
after: String
first: Int
last: Int
): ProductCountableConnection!
variants(
offset: Int
before: String
after: String
first: Int
last: Int
): ProductVariantCountableConnection!
privateMetadata: [MetadataItem!]!
metadata: [MetadataItem!]!
storeDescription: String
storeDescriptionPlainText: String
}
Show more ↓

Fields

PublicSeller.id ● ID! non-null scalar

The ID of the object

PublicSeller.companyName ● String! non-null scalar

PublicSeller.slug ● String! non-null scalar

PublicSeller.logo ● Image object

PublicSeller.logo.size ● Int scalar

Size of the store's logo.

PublicSeller.status ● SellerStatus! non-null enum

PublicSeller.banner ● Image object

PublicSeller.banner.size ● Int scalar

Size of the store's banner.

PublicSeller.products ● ProductCountableConnection! non-null object

PublicSeller.products.offset ● Int scalar
PublicSeller.products.before ● String scalar
PublicSeller.products.after ● String scalar
PublicSeller.products.first ● Int scalar
PublicSeller.products.last ● Int scalar

PublicSeller.variants ● ProductVariantCountableConnection! non-null object

PublicSeller.variants.offset ● Int scalar
PublicSeller.variants.before ● String scalar
PublicSeller.variants.after ● String scalar
PublicSeller.variants.first ● Int scalar
PublicSeller.variants.last ● Int scalar

PublicSeller.privateMetadata ● [MetadataItem!]! non-null object

List of private metadata items.Requires proper staff permissions to access.

PublicSeller.metadata ● [MetadataItem!]! non-null object

List of public metadata items. Can be accessed without permissions.

PublicSeller.storeDescription ● String scalar

PublicSeller.storeDescriptionPlainText ● String scalar

Interfaces

Node interface

An object with an ID

ObjectWithMetadata interface

Returned By

sellerBySlug query

Was this page helpful?