ReleaseItem Object
Description
Represents a music release item (vinyl, CD, cassette, etc.) with release-specific data.
Declaration
type ReleaseItem implements ItemInterface {
_id: ID!
id: Float!
type: ItemType!
incId: Float
uniqueId: String
oldId: Float
created: Date
modified: Date
seo: SeoEntry
isForbiddenForSale: Boolean
logs: [LogEntry]
handle: String
path: String!
uri: String
wants: Int
bitly: String
descriptions: ItemDescriptions!
listings: [Listing!]!
data: ReleaseItemData!
}
Fields
| Name | Type | Description |
|---|---|---|
_id | ID! | Internal database identifier. |
id | Float! | Numeric identifier for the item. |
type | ItemType! | Type classification of the item. |
incId | Float | Incremental identifier assigned to the item. |
uniqueId | String | Unique identifier string for the item. |
oldId | Float | Legacy numeric identifier from previous system. |
created | Date | Date when the item was created. |
modified | Date | Date when the item was last modified. |
seo | SeoEntry | SEO metadata for the item. |
isForbiddenForSale | Boolean | Whether the item is forbidden from being sold. |
logs ⚠️ | [LogEntry] | Historical log entries for the item. ⚠️ Deprecated: No longer supported |
handle ⚠️ | String | URL-friendly handle for the item. ⚠️ Deprecated: No longer supported |
path | String! | URL path to the item page. |
uri | String | URI identifier for the item. |
wants | Int | Number of users who have added this item to their wantlist. |
bitly | String | Shortened URL via Bitly service. |
descriptions | ItemDescriptions! | Item descriptions in multiple formats. |
listings | [Listing!]! | Available listings for this item. |
data | ReleaseItemData! | Release-specific data and metadata. |