Skip to main content

Item Object

Description

Represents an inventory item (release, book, or product) with listings and metadata.

Declaration

type Item {
_id: ID!
id: Float!
created: Date
wanted: Boolean
path: String!
seo: SeoEntry
uri: String!
type: String!
isForbiddenForSale: Boolean
data: ItemData!
handle: String
bitly: String
descriptions: Descriptions!
listings: [Listing!]!
}

Fields

NameTypeDescription
_idID!Internal database identifier.
idFloat!Numeric identifier for the item.
createdDateDate when the item was created.
wantedBooleanWhether the item is in the user's wantlist.
pathString!URL path to the item page.
seoSeoEntrySEO metadata for the item.
uriString!URI identifier for the item.
typeString!Item type (e.g., "release", "book", "product").
isForbiddenForSaleBooleanWhether the item is forbidden for sale.
dataItemData!Detailed item data and metadata.
handle ⚠️StringURL-friendly handle for the item. ⚠️ Deprecated: No longer supported
bitlyStringShortened URL via Bitly.
descriptionsDescriptions!Item descriptions in multiple formats.
listings[Listing!]!Available listings for this item.