GraphQL schema:

type GET_search_Albums {
  href: String
  items: [GET_search_ItemsEntry]
  limit: Int
  next: String
  offset: Int
  """
  Field "previous" is defined as JSON since its value was always 'null'
  """
  previous: JSON
  total: Int
}

type GET_search_ArtistsEntry {
  external_urls: GET_search_ExternalUrls
  href: String
  id: String
  name: String
  type: String
  uri: String
}

type GET_search_ExternalUrls {
  spotify: String
}

type GET_search_ExternalUrls1 {
  spotify: String
}

type GET_search_ImagesEntry {
  height: Int
  url: String
  width: Int
}

type GET_search_ItemsEntry {
  album_type: String
  artists: [GET_search_ArtistsEntry]
  available_markets: [String]
  external_urls: GET_search_ExternalUrls1
  href: String
  id: String
  images: [GET_search_ImagesEntry]
  name: String
  release_date: String
  release_date_precision: String
  total_tracks: Int
  type: String
  uri: String
}

type GET_search_Root {
  albums: GET_search_Albums
}

type Query {
  GET_search(
    q: String
    spotify_access_token: String!
    type: String
  ): GET_search_Root
    @rest(
      endpoint: "https://api.spotify.com/v1/search"
      headers: [
        { name: "authorization", value: "Bearer $spotify_access_token;" }
      ]
    )
}
type GET_artists__id__albums_ArtistsEntry {
  external_urls: GET_artists__id__albums_ExternalUrls1
  href: String
  id: String
  name: String
  type: String
  uri: String
}

type GET_artists__id__albums_ExternalUrls {
  spotify: String
}

type GET_artists__id__albums_ExternalUrls1 {
  spotify: String
}

type GET_artists__id__albums_ImagesEntry {
  height: Int
  url: String
  width: Int
}

type GET_artists__id__albums_ItemsEntry {
  album_group: String
  album_type: String
  artists: [GET_artists__id__albums_ArtistsEntry]
  available_markets: [String]
  external_urls: GET_artists__id__albums_ExternalUrls
  href: String
  id: String
  images: [GET_artists__id__albums_ImagesEntry]
  name: String
  release_date: String
  release_date_precision: String
  total_tracks: Int
  type: String
  uri: String
}

type GET_artists__id__albums_Root {
  href: String
  items: [GET_artists__id__albums_ItemsEntry]
  limit: Int
  next: String
  offset: Int
  """
  Field "previous" is defined as JSON since its value was always 'null'
  """
  previous: JSON
  total: Int
}

type Query {
  GET_artists__id__albums(
    id: String!
    spotify_access_token: String!
  ): GET_artists__id__albums_Root
    @rest(
      endpoint: "https://api.spotify.com/v1/artists/$id;/albums"
      headers: [
        { name: "authorization", value: "Bearer $spotify_access_token;" }
      ]
    )
}

Utterance: show me the name of Maroon 5's newest album