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
| Name | Type | Description |
|---|---|---|
_id | ID! | Internal database identifier. |
id | Float! | Numeric identifier for the item. |
created | Date | Date when the item was created. |
wanted | Boolean | Whether the item is in the user's wantlist. |
path | String! | URL path to the item page. |
seo | SeoEntry | SEO metadata for the item. |
uri | String! | URI identifier for the item. |
type | String! | Item type (e.g., "release", "book", "product"). |
isForbiddenForSale | Boolean | Whether the item is forbidden for sale. |
data | ItemData! | Detailed item data and metadata. |
handle ⚠️ | String | URL-friendly handle for the item. ⚠️ Deprecated: No longer supported |
bitly | String | Shortened URL via Bitly. |
descriptions | Descriptions! | Item descriptions in multiple formats. |
listings | [Listing!]! | Available listings for this item. |