Artist Object
Description
Represents an artist with profile information, images, and metadata.
Declaration
type Artist {
_id: ID!
id: Float
discogsId: Int
createdAt: Date
modifiedAt: Date
profile: String
name: String!
anvs: [String!]
websites: [String!]
images: [ArtistImage!]
country: ArtistCountry
tags: [String!]
members: [ArtistMember!]
}
Fields
| Name | Type | Description |
|---|---|---|
_id | ID! | Internal database identifier. |
id | Float | Numeric identifier for the artist. |
discogsId | Int | External identifier from the marketplace system. |
createdAt | Date | Date when the artist record was created. |
modifiedAt | Date | Date when the artist record was last modified. |
profile | String | Biography or profile text for the artist. |
name | String! | Artist name. |
anvs | [String!] | Artist name variations (ANVs). |
websites | [String!] | Official websites for the artist. |
images | [ArtistImage!] | Images associated with the artist. |
country | ArtistCountry | Country of origin for the artist. |
tags | [String!] | Tags associated with the artist. |
members | [ArtistMember!] | Members of the artist group or band. |