Skip to main content

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

NameTypeDescription
_idID!Internal database identifier.
idFloatNumeric identifier for the artist.
discogsIdIntExternal identifier from the marketplace system.
createdAtDateDate when the artist record was created.
modifiedAtDateDate when the artist record was last modified.
profileStringBiography or profile text for the artist.
nameString!Artist name.
anvs[String!]Artist name variations (ANVs).
websites[String!]Official websites for the artist.
images[ArtistImage!]Images associated with the artist.
countryArtistCountryCountry of origin for the artist.
tags[String!]Tags associated with the artist.
members[ArtistMember!]Members of the artist group or band.