GraphQL schema:

type GET_tv_popular_ResultsEntry {
  adult: Boolean
  backdrop_path: String
  first_air_date: Date
  genre_ids: [Int]
  id: Int
  name: String
  origin_country: [String]
  original_language: String
  original_name: String
  overview: String
  popularity: Float
  poster_path: String
  vote_average: Float
  vote_count: Int
}

type GET_tv_popular_Root {
  page: Int
  results: [GET_tv_popular_ResultsEntry]
  total_pages: Int
  total_results: Int
}

type Query {
  GET_tv_popular(tmdb_access_token: String!): GET_tv_popular_Root
    @rest(
      endpoint: "https://api.themoviedb.org/3/tv/popular"
      headers: [{ name: "authorization", value: "Bearer $tmdb_access_token;" }]
    )
}
type GET_tv__tv_id__keywords_ResultsEntry {
  id: Int
  name: String
}

type GET_tv__tv_id__keywords_Root {
  id: Int
  results: [GET_tv__tv_id__keywords_ResultsEntry]
}

type Query {
  GET_tv__tv_id__keywords(
    tmdb_access_token: String!
    tv_id: String!
  ): GET_tv__tv_id__keywords_Root
    @rest(
      endpoint: "https://api.themoviedb.org/3/tv/$tv_id;/keywords"
      headers: [{ name: "authorization", value: "Bearer $tmdb_access_token;" }]
    )
}

Utterance: give me a keyword of the most popular TV show