Label Object
Description
Represents a record label with profile information, images, and metadata.
Declaration
type Label {
_id: ID!
id: Float!
discogsId: Int
createdAt: Date
modifiedAt: Date
profile: String
name: String!
websites: [String!]
images: [LabelImage!]
country: LabelCountry
tags: [String!]
subLabels: [LabelSub!]
}
Fields
| Name | Type | Description |
|---|---|---|
_id | ID! | Internal database identifier. |
id | Float! | Numeric identifier for the label. |
discogsId | Int | External identifier from the marketplace system. |
createdAt | Date | Date when the label record was created. |
modifiedAt | Date | Date when the label record was last modified. |
profile | String | Biography or profile text for the label. |
name | String! | Label name. |
websites | [String!] | Official websites for the label. |
images | [LabelImage!] | Images associated with the label. |
country | LabelCountry | Country of origin for the label. |
tags | [String!] | Tags associated with the label. |
subLabels | [LabelSub!] | Sub-labels or imprints associated with this label. |