GraphQL schema:

type GET_me_albums_Album {
  album_type: String
  artists: [GET_me_albums_ArtistsEntry]
  available_markets: [String]
  copyrights: [GET_me_albums_CopyrightsEntry]
  external_ids: GET_me_albums_ExternalIds
  external_urls: GET_me_albums_ExternalUrls1
  genres: [JSON]
  href: String
  id: String
  images: [GET_me_albums_ImagesEntry]
  label: String
  name: String
  popularity: Int
  release_date: Int
  release_date_precision: String
  total_tracks: Int
  tracks: GET_me_albums_Tracks
  type: String
  uri: String
}

type GET_me_albums_Artists1Entry {
  external_urls: GET_me_albums_ExternalUrls2
  href: String
  id: String
  name: String
  type: String
  uri: String
}

type GET_me_albums_ArtistsEntry {
  external_urls: GET_me_albums_ExternalUrls
  href: String
  id: String
  name: String
  type: String
  uri: String
}

type GET_me_albums_CopyrightsEntry {
  text: String
  type: String
}

type GET_me_albums_ExternalIds {
  upc: Float
}

type GET_me_albums_ExternalUrls {
  spotify: String
}

type GET_me_albums_ExternalUrls1 {
  spotify: String
}

type GET_me_albums_ExternalUrls2 {
  spotify: String
}

type GET_me_albums_ExternalUrls3 {
  spotify: String
}

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

type GET_me_albums_Items1Entry {
  artists: [GET_me_albums_Artists1Entry]
  available_markets: [String]
  disc_number: Int
  duration_ms: Int
  explicit: Boolean
  external_urls: GET_me_albums_ExternalUrls3
  href: String
  id: String
  is_local: Boolean
  name: String
  preview_url: String
  track_number: Int
  type: String
  uri: String
}

type GET_me_albums_ItemsEntry {
  added_at: DateTime
  album: GET_me_albums_Album
}

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

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

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

Utterance: Show me the albums I saved