OBJECT

AlbumInfo

link GraphQL Schema definition

  • type AlbumInfo {
  • # The Metacritic URL for the album
  • url: String!
  • # The title of the album
  • album: String!
  • # The name of the artist
  • artist: String!
  • # The release date of the album
  • releaseDate: String!
  • # The album's Metacritic score from critics.
  • criticScore: Int!
  • # The album's publisher
  • publisher: String!
  • # The genre's of the album
  • genres: [String!]
  • # The number of critic reviews on the album
  • numOfCriticReviews: Int!
  • # The number of critic reviews on the album that are deemed positive
  • numOfPositiveCriticReviews: Int!
  • # The number of critic reviews on the album that are deemed mixed
  • numOfMixedCriticReviews: Int!
  • # The number of critic reviews on the album that are deemed negative
  • numOfNegativeCriticReviews: Int!
  • # URL that links to the image used for the album on Metacritic
  • productImage: String!
  • }

link Require by