GraphQL schema:

type GET_search_company_ResultsEntry {
  id: Int
  logo_path: String
  name: String
  origin_country: String
}

type GET_search_company_Root {
  page: Int
  results: [GET_search_company_ResultsEntry]
  total_pages: Int
  total_results: Int
}

type Query {
  GET_search_company(
    query: String
    tmdb_access_token: String!
  ): GET_search_company_Root
    @rest(
      endpoint: "https://api.themoviedb.org/3/search/company"
      headers: [{ name: "authorization", value: "Bearer $tmdb_access_token;" }]
    )
}
type GET_company__company_id__images_LogosEntry {
  aspect_ratio: Float
  file_path: String
  file_type: String
  height: Int
  id: String
  vote_average: Float
  vote_count: Int
  width: Int
}

type GET_company__company_id__images_Root {
  id: Int
  logos: [GET_company__company_id__images_LogosEntry]
}

type Query {
  GET_company__company_id__images(
    company_id: String!
    tmdb_access_token: String!
  ): GET_company__company_id__images_Root
    @rest(
      endpoint: "https://api.themoviedb.org/3/company/$company_id;/images"
      headers: [{ name: "authorization", value: "Bearer $tmdb_access_token;" }]
    )
}

Utterance: What does the logo look like for Paramount Pictures?