GraphQL schema:

type GET_tv_on_the_air_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_on_the_air_Root {
  page: Int
  results: [GET_tv_on_the_air_ResultsEntry]
  total_pages: Int
  total_results: Int
}

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

Utterance: Give me a show that is currently on the air