GraphQL schema:

type GET_movie__movie_id__keywords_KeywordsEntry {
  id: Int
  name: String
}

type GET_movie__movie_id__keywords_Root {
  id: Int
  keywords: [GET_movie__movie_id__keywords_KeywordsEntry]
}

type Query {
  GET_movie__movie_id__keywords(
    movie_id: String!
    tmdb_access_token: String!
  ): GET_movie__movie_id__keywords_Root
    @rest(
      endpoint: "https://api.themoviedb.org/3/movie/$movie_id;/keywords"
      headers: [{ name: "authorization", value: "Bearer $tmdb_access_token;" }]
    )
}
type GET_search_collection_ResultsEntry {
  adult: Boolean
  backdrop_path: String
  id: Int
  name: String
  original_language: String
  original_name: String
  overview: String
  poster_path: String
}

type GET_search_collection_Root {
  page: Int
  results: [GET_search_collection_ResultsEntry]
  total_pages: Int
  total_results: Int
}

type Query {
  GET_search_collection(
    query: String
    tmdb_access_token: String!
  ): GET_search_collection_Root
    @rest(
      endpoint: "https://api.themoviedb.org/3/search/collection"
      headers: [{ name: "authorization", value: "Bearer $tmdb_access_token;" }]
    )
}
type GET_collection__collection_id_PartsEntry {
  adult: Boolean
  backdrop_path: String
  genre_ids: [Int]
  id: Int
  media_type: String
  original_language: String
  original_title: String
  overview: String
  popularity: Float
  poster_path: String
  release_date: Date
  title: String
  video: Boolean
  vote_average: Float
  vote_count: Int
}

type GET_collection__collection_id_Root {
  backdrop_path: String
  id: Int
  name: String
  overview: String
  parts: [GET_collection__collection_id_PartsEntry]
  poster_path: String
}

type Query {
  GET_collection__collection_id_(
    collection_id: String!
    tmdb_access_token: String!
  ): GET_collection__collection_id_Root
    @rest(
      endpoint: "https://api.themoviedb.org/3/collection/$collection_id;"
      headers: [{ name: "authorization", value: "Bearer $tmdb_access_token;" }]
    )
}

Utterance: What are some keywords for a movie of the collection The Hunger Games?