INPUT_OBJECT

UpdateArtistInput

Autogenerated input type of UpdateArtist

link GraphQL Schema definition

  • input UpdateArtistInput {
  • # A unique identifier for the client performing the mutation.
  • client_mutation_id: String
  • # Run the mutation with no side effects in validate-only mode. When true, the
  • # inputs will be validated and errors will be returned, but the mutation will not
  • # perform any actions.
  • skip_save: Boolean
  • # ID of the artist
  • id: ID!
  • # Artist's name.
  • name: String
  • # Artist's biography snippet.
  • bio: String
  • # Web address for an artist's site.
  • site: String
  • # Web address for an artist's soundcloud.
  • soundcloud: String
  • # Web address for an artist's itunes.
  • itunes: String
  • # Web address for an artist's beatport.
  • beatport: String
  • # Web address for an artist's facebook.
  • facebook: String
  • # Web address for an artist's tumblr.
  • tumblr: String
  • # Web address for an artist's twitter.
  • twitter: String
  • # Web address for an artist's instagram.
  • instagram: String
  • # Web address for an artist's vevo_user.
  • vevo_user: String
  • # Web address for an artist's youtube.
  • youtube_channel_url: String
  • # Web address for an artist's spotify.
  • spotify: String
  • # Artist's profile image path.
  • image_path: String
  • # Default label name for any of the artist's medias' metadata.
  • default_label_name: String
  • # Default copyright name for any of the artist's medias' metadata.
  • default_copyright_name: String
  • # Default copyright year for any of the artist's medias' metadata.
  • default_copyright_year: Int
  • # Default genre for any of the artist's medias' metadata.
  • default_genre: Genre
  • # Default secondary genre for any of the artist's medias' metadata.
  • default_secondary_genre: Genre
  • # Default language code for any of the artist's medias' metadata.
  • default_language_code: MediaLanguageCode
  • }