INPUT_OBJECT

UpdateAlbumMediaIdsInput

Autogenerated input type of UpdateAlbumMediaIds

link GraphQL Schema definition

  • input UpdateAlbumMediaIdsInput {
  • # 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
  • # The name of the album.
  • name: String
  • # Artist primary key.
  • artist_id: ID
  • genre: Genre
  • secondary_genre: Genre
  • # The record label
  • label: String
  • copyright_name: String
  • copyright_year: Int
  • upc: String
  • territories: [String!]
  • # Has the album previously released?
  • has_previously_released: Boolean
  • # Original Release Date of the album
  • original_release_date: Date
  • # Additional artists on the album.
  • additional_artists: [AdditionalArtistObject!]
  • # ID of album
  • id: ID!
  • # List of media IDs
  • media_ids: [ID!]
  • }