Skip to content

IMDb API - 主搜索 (V1)

prod-global
GET
/api/imdb/main-search-query/v1

在 IMDb 上对影片、人物等内容进行通用搜索。

典型使用场景:

  • 按名称搜索电影,或查找名人资料。

请求参数

参数名位置类型必填说明
tokenquerystring用户的鉴权令牌。
searchTermquerystring要搜索的术语(例如 'fire')。
typequerystring搜索结果中包含的类别。

可用值:
- Top:热门结果
- Movies:电影
- Shows:电视节目
- People:人物
- Interests:兴趣
- Episodes:剧集
- Podcast:播客
- Video_games:视频游戏
limitqueryinteger返回的最大结果数量(1-300)。
languageCountryquerystring语言与国家/地区偏好。

可用值:
- en_US: 英语(美国)
- fr_CA: 法语(加拿大)
- fr_FR: 法语(法国)
- de_DE: 德语(德国)
- hi_IN: 印地语(印度)
- it_IT: 意大利语(意大利)
- pt_BR: 葡萄牙语(巴西)
- es_ES: 西班牙语(西班牙)
- es_US: 西班牙语(美国)
- es_MX: 西班牙语(墨西哥)

代码示例

💡 环境说明

默认示例使用 https://api.justoneapi.com (prod-global)。中国大陆地区建议替换为 http://47.117.133.51:30015 (prod-cn) 以获得更好的访问体验。详见 环境选择

bash
# 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
curl -X GET "https://api.justoneapi.com/api/imdb/main-search-query/v1?token=YOUR_API_KEY&searchTerm=VALUE"
text
我想使用 Just One API 提供的“主搜索 (V1)”接口。
接口地址: https://api.justoneapi.com/api/imdb/main-search-query/v1
HTTP 方法: GET
身份验证: 在 URL 后添加查询参数“?token=您的API密钥”。
OpenAPI 定义: https://docs.justoneapi.com/openapi/imdb-apis/main-search-v1-zh.json

请求参数说明:
- token (query): 用户的鉴权令牌。 (必填)
- searchTerm (query): 要搜索的术语(例如 'fire')。 (必填)
- type (query): 搜索结果中包含的类别。

可用值:
- `Top`:热门结果
- `Movies`:电影
- `Shows`:电视节目
- `People`:人物
- `Interests`:兴趣
- `Episodes`:剧集
- `Podcast`:播客
- `Video_games`:视频游戏
- limit (query): 返回的最大结果数量(1-300)。
- languageCountry (query): 语言与国家/地区偏好。

可用值:
- `en_US`: 英语(美国)
- `fr_CA`: 法语(加拿大)
- `fr_FR`: 法语(法国)
- `de_DE`: 德语(德国)
- `hi_IN`: 印地语(印度)
- `it_IT`: 意大利语(意大利)
- `pt_BR`: 葡萄牙语(巴西)
- `es_ES`: 西班牙语(西班牙)
- `es_US`: 西班牙语(美国)
- `es_MX`: 西班牙语(墨西哥)

返回格式: JSON

响应处理与错误码:
1. 需通过返回体中的 "code" 字段判断业务结果(code 为 0 表示成功)。
2. 超时建议:建议将请求超时时间设置为至少 60 秒。
3. 业务码说明:
   - 0: 成功
   - 100: Token 无效或已失效
   - 301: 采集失败,请重试
   - 302: 超出速率限制
   - 303: 超出每日配额
   - 400: 参数错误
   - 500: 内部服务器错误
   - 600: 权限不足
   - 601: 余额不足

请帮我用我擅长的编程语言写一个脚本来调用这个接口,并处理返回结果。
python
# 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
import requests

url = "https://api.justoneapi.com/api/imdb/main-search-query/v1?token=YOUR_API_KEY&searchTerm=VALUE"
response = requests.get(url)
print(response.json())
js
// 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
const response = await fetch("https://api.justoneapi.com/api/imdb/main-search-query/v1?token=YOUR_API_KEY&searchTerm=VALUE", {
  method: "GET"
});
const data = await response.json();
console.log(data);
java
// 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
import java.net.URI;
import java.net.http.HttpClient;
import java.net.http.HttpRequest;
import java.net.http.HttpResponse;

public class Main {
    public static void main(String[] args) throws Exception {
        HttpClient client = HttpClient.newHttpClient();
        HttpRequest request = HttpRequest.newBuilder()
            .uri(URI.create("https://api.justoneapi.com/api/imdb/main-search-query/v1?token=YOUR_API_KEY&searchTerm=VALUE"))
            .method("GET", HttpRequest.BodyPublishers.noBody())
            .build();

        HttpResponse<String> response = client.send(request, HttpResponse.BodyHandlers.ofString());
        System.out.println(response.body());
    }
}
go
// 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
package main

import (
	"fmt"
	"io"
	"net/http"
)

func main() {
	client := &http.Client{}
	url := "https://api.justoneapi.com/api/imdb/main-search-query/v1?token=YOUR_API_KEY&searchTerm=VALUE"
	req, _ := http.NewRequest("GET", url, nil)
	resp, _ := client.Do(req)
	defer resp.Body.Close()
	body, _ := io.ReadAll(resp.Body)
	fmt.Println(string(body))
}
php
// 提示: 中国大陆地区建议将 https://api.justoneapi.com 替换为 http://47.117.133.51:30015
<?php
$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, "https://api.justoneapi.com/api/imdb/main-search-query/v1?token=YOUR_API_KEY&searchTerm=VALUE");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "GET");
$response = curl_exec($ch);
curl_close($ch);
echo $response;

响应结果

json
{
  "code": 0,
  "data": {
    "mainSearch": {
      "edges": [
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt9307686",
              "titleText": {
                "text": "Fire Force",
                "isOriginalTitle": false
              },
              "originalTitleText": {
                "text": "Enen no Shôbôtai",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2019,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 7,
                "day": 5,
                "year": 2019,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [
                  {
                    "id": "internet",
                    "text": "internet"
                  }
                ],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "tvSeries",
                "text": "TV Series",
                "categories": [
                  {
                    "id": "tv",
                    "text": "TV",
                    "value": "tv"
                  }
                ],
                "canHaveEpisodes": true,
                "isEpisode": false,
                "isSeries": true,
                "displayableProperty": {
                  "value": {
                    "plainText": "TV Series"
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm159364866",
                "url": "https://m.media-amazon.com/images/M/MV5BNDRhMDMzYzktYmI3My00YzBlLTkxOTMtMTUxNjZjN2NkOWQ4XkEyXkFqcGc@._V1_.jpg",
                "height": 3000,
                "width": 2000
              },
              "episodes": {
                "episodes": {
                  "total": 69
                }
              },
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm9309053",
                        "nameText": {
                          "text": "Gakuto Kajiwara"
                        },
                        "primaryImage": null
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm2324451",
                        "nameText": {
                          "text": "Derick Snow"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm3074598146",
                          "url": "https://m.media-amazon.com/images/M/MV5BMzEyZmQxYzUtZjhjMy00ZTJlLWIyZGMtNmNlMTAzOGU2NTcxXkEyXkFqcGc@._V1_CR367,161,1283,1924_.jpg",
                          "height": 1924,
                          "width": 1283
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0425061",
                        "nameText": {
                          "text": "Eric Vale"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm967963137",
                          "url": "https://m.media-amazon.com/images/M/MV5BNjAyZWZhMzYtZDZlYi00YzdjLWEzZWQtMzYyMGJhYzJlN2M2XkEyXkFqcGc@._V1_.jpg",
                          "height": 3500,
                          "width": 2800
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt16098700",
              "titleText": {
                "text": "Fire Country",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Fire Country",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2022,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 10,
                "day": 7,
                "year": 2022,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "tvSeries",
                "text": "TV Series",
                "categories": [
                  {
                    "id": "tv",
                    "text": "TV",
                    "value": "tv"
                  }
                ],
                "canHaveEpisodes": true,
                "isEpisode": false,
                "isSeries": true,
                "displayableProperty": {
                  "value": {
                    "plainText": "TV Series"
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm1380647425",
                "url": "https://m.media-amazon.com/images/M/MV5BYmQ3YTlmMjItNjBmZC00MDJkLTg2NWUtNDY0NzkwNjBmOTcyXkEyXkFqcGc@._V1_.jpg",
                "height": 2896,
                "width": 1999
              },
              "episodes": {
                "episodes": {
                  "total": 73
                }
              },
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm1302735",
                        "nameText": {
                          "text": "Max Thieriot"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2842258945",
                          "url": "https://m.media-amazon.com/images/M/MV5BZjkxNDQ3YTQtYzFlYS00YmViLWE3YTItNDllNjFkM2M1NDgwXkEyXkFqcGc@._V1_CR389,1,379,569_.jpg",
                          "height": 569,
                          "width": 379
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm1204760",
                        "nameText": {
                          "text": "Kevin Alejandro"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2637689856",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTA0NDkyNzI0MTBeQTJeQWpwZ15BbWU4MDI4ODUxODUx._V1_.jpg",
                          "height": 3888,
                          "width": 2592
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm1490195",
                        "nameText": {
                          "text": "Jordan Calloway"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2149439233",
                          "url": "https://m.media-amazon.com/images/M/MV5BMzhiZGYxN2MtZGJhMy00MzA2LTlmZmUtYTQ3YTU5NTQwMTY4XkEyXkFqcGc@._V1_.jpg",
                          "height": 4000,
                          "width": 2666
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt2261391",
              "titleText": {
                "text": "Chicago Fire",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Chicago Fire",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2012,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 10,
                "day": 10,
                "year": 2012,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "tvSeries",
                "text": "TV Series",
                "categories": [
                  {
                    "id": "tv",
                    "text": "TV",
                    "value": "tv"
                  }
                ],
                "canHaveEpisodes": true,
                "isEpisode": false,
                "isSeries": true,
                "displayableProperty": {
                  "value": {
                    "plainText": "TV Series"
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm2950802946",
                "url": "https://m.media-amazon.com/images/M/MV5BNDVhYTBmYzUtNjU5NC00NjE3LWE5ZWQtZmNkYTIyYmQ3NGU2XkEyXkFqcGc@._V1_.jpg",
                "height": 1000,
                "width": 675
              },
              "episodes": {
                "episodes": {
                  "total": 295
                }
              },
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm1978325",
                        "nameText": {
                          "text": "Taylor Kinney"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2485184000",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTQ2MzM4NjM2NV5BMl5BanBnXkFtZTgwMDM1NTU2NzE@._V1_.jpg",
                          "height": 1727,
                          "width": 2048
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0831601",
                        "nameText": {
                          "text": "Christian Stolte"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2391933184",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTg2MjQzNDI3M15BMl5BanBnXkFtZTgwMDE1NDk0MDI@._V1_.jpg",
                          "height": 667,
                          "width": 1000
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm2866876",
                        "nameText": {
                          "text": "Joe Minoso"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm3868367361",
                          "url": "https://m.media-amazon.com/images/M/MV5BZTdjOTQ1ZjItZGU2Zi00MDg5LTk2NDEtMTQ5M2JmYWFkMGU4XkEyXkFqcGc@._V1_.jpg",
                          "height": 667,
                          "width": 1000
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt1757678",
              "titleText": {
                "text": "Avatar: Fire and Ash",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Avatar: Fire and Ash",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2025,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 12,
                "day": 19,
                "year": 2025,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm1040624386",
                "url": "https://m.media-amazon.com/images/M/MV5BZDYxY2I1OGMtN2Y4MS00ZmU1LTgyNDAtODA0MzAyYjI0N2Y2XkEyXkFqcGc@._V1_.jpg",
                "height": 1609,
                "width": 1086
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0941777",
                        "nameText": {
                          "text": "Sam Worthington"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm1156778753",
                          "url": "https://m.media-amazon.com/images/M/MV5BODAwMTQ0Y2UtYmE0ZS00Mjc4LWExZTMtNTIzMjdmYTZlMTJkXkEyXkFqcGc@._V1_.jpg",
                          "height": 800,
                          "width": 567
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0757855",
                        "nameText": {
                          "text": "Zoe Saldaña"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm365667585",
                          "url": "https://m.media-amazon.com/images/M/MV5BMDFkMWQ5ZDItNGUzNS00YzI4LWIyOTctMDk0Mjc3MGQyZTYxXkEyXkFqcGc@._V1_.jpg",
                          "height": 2519,
                          "width": 2244
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0000244",
                        "nameText": {
                          "text": "Sigourney Weaver"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm738889472",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTk1MTcyNTE3OV5BMl5BanBnXkFtZTcwMTA0MTMyMw@@._V1_.jpg",
                          "height": 600,
                          "width": 450
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt0330373",
              "titleText": {
                "text": "Harry Potter and the Goblet of Fire",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Harry Potter and the Goblet of Fire",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2005,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 11,
                "day": 18,
                "year": 2005,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm3124664320",
                "url": "https://m.media-amazon.com/images/M/MV5BMTIzNzUzOTk2NV5BMl5BanBnXkFtZTYwNTI4MDg2._V1_.jpg",
                "height": 717,
                "width": 485
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0705356",
                        "nameText": {
                          "text": "Daniel Radcliffe"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm16572161",
                          "url": "https://m.media-amazon.com/images/M/MV5BYzVmYjIxMzgtZWU2Ny00MjAyLTk5ZWUtZDEyMTliYjczMmIxXkEyXkFqcGc@._V1_.jpg",
                          "height": 1140,
                          "width": 760
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0914612",
                        "nameText": {
                          "text": "Emma Watson"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2697969664",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTQ3ODE2NTMxMV5BMl5BanBnXkFtZTgwOTIzOTQzMjE@._V1_.jpg",
                          "height": 1280,
                          "width": 1038
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0342488",
                        "nameText": {
                          "text": "Rupert Grint"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm1713408513",
                          "url": "https://m.media-amazon.com/images/M/MV5BODUwOTc5N2MtNTVmZi00MWE0LWE0Y2QtOTAyOTEzZDg1NGFiXkEyXkFqcGc@._V1_.jpg",
                          "height": 3600,
                          "width": 2400
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt0328107",
              "titleText": {
                "text": "Man on Fire",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Man on Fire",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2004,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 4,
                "day": 23,
                "year": 2004,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm2271150592",
                "url": "https://m.media-amazon.com/images/M/MV5BMGMzNjg3ZDgtOGNlNy00NTdjLWI2NDEtMjI1MmEwMTBmMjMxXkEyXkFqcGc@._V1_.jpg",
                "height": 2943,
                "width": 2000
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0000243",
                        "nameText": {
                          "text": "Denzel Washington"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm12276224",
                          "url": "https://m.media-amazon.com/images/M/MV5BMjExMjY5ODYyM15BMl5BanBnXkFtZTgwOTU0OTg0NDM@._V1_.jpg",
                          "height": 2048,
                          "width": 1479
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0000686",
                        "nameText": {
                          "text": "Christopher Walken"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2301401600",
                          "url": "https://m.media-amazon.com/images/M/MV5BMjA4ODUyNDQ2NV5BMl5BanBnXkFtZTYwODk2MTYz._V1_.jpg",
                          "height": 400,
                          "width": 278
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0266824",
                        "nameText": {
                          "text": "Dakota Fanning"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm1177187073",
                          "url": "https://m.media-amazon.com/images/M/MV5BNDAyMTEwOTItOTI1Zi00MTMwLTliM2YtZTVmN2RiY2Q1YjU3XkEyXkFqcGc@._V1_.jpg",
                          "height": 5208,
                          "width": 7674
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt1951264",
              "titleText": {
                "text": "The Hunger Games: Catching Fire",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "The Hunger Games: Catching Fire",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2013,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 11,
                "day": 22,
                "year": 2013,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm755621632",
                "url": "https://m.media-amazon.com/images/M/MV5BMTAyMjQ3OTAxMzNeQTJeQWpwZ15BbWU4MDU0NzA1MzAx._V1_.jpg",
                "height": 2048,
                "width": 1382
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm2225369",
                        "nameText": {
                          "text": "Jennifer Lawrence"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2555577344",
                          "url": "https://m.media-amazon.com/images/M/MV5BOTU3NDE5MDQ4MV5BMl5BanBnXkFtZTgwMzE5ODQ3MDI@._V1_.jpg",
                          "height": 2048,
                          "width": 1284
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm1242688",
                        "nameText": {
                          "text": "Josh Hutcherson"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm404400642",
                          "url": "https://m.media-amazon.com/images/M/MV5BYzRjMjU3NjUtOTc3Zi00M2I5LThmZWEtZGUwZTA0Njc4Mzk2XkEyXkFqcGc@._V1_.jpg",
                          "height": 640,
                          "width": 426
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm2955013",
                        "nameText": {
                          "text": "Liam Hemsworth"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm689482498",
                          "url": "https://m.media-amazon.com/images/M/MV5BYzZhNjVhYzYtODgxZi00MjdmLTk4ZWYtNTA4ZWZmNGY4MzQ3XkEyXkFqcGc@._V1_.jpg",
                          "height": 5388,
                          "width": 3862
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt0303461",
              "titleText": {
                "text": "Firefly",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Firefly",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2002,
                "endYear": 2003
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 9,
                "day": 20,
                "year": 2002,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "tvSeries",
                "text": "TV Series",
                "categories": [
                  {
                    "id": "tv",
                    "text": "TV",
                    "value": "tv"
                  }
                ],
                "canHaveEpisodes": true,
                "isEpisode": false,
                "isSeries": true,
                "displayableProperty": {
                  "value": {
                    "plainText": "TV Series"
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm1906672641",
                "url": "https://m.media-amazon.com/images/M/MV5BYzYyZWYzNzUtOWQ4Yi00Y2Q4LWJjZjgtZTllNjg2ZGM0MTcyXkEyXkFqcGc@._V1_.jpg",
                "height": 1920,
                "width": 1280
              },
              "episodes": {
                "episodes": {
                  "total": 14
                }
              },
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0277213",
                        "nameText": {
                          "text": "Nathan Fillion"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2737497600",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTkxODM3ODY2Nl5BMl5BanBnXkFtZTgwMzAyMjU2NzE@._V1_.jpg",
                          "height": 720,
                          "width": 576
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0868659",
                        "nameText": {
                          "text": "Gina Torres"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm29653760",
                          "url": "https://m.media-amazon.com/images/M/MV5BYzBmNGZiNjAtMWE4Mi00ZmVlLTgwNjItMjUyNzNhNmM4NTk1XkEyXkFqcGc@._V1_.jpg",
                          "height": 1350,
                          "width": 842
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0876138",
                        "nameText": {
                          "text": "Alan Tudyk"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm3170672896",
                          "url": "https://m.media-amazon.com/images/M/MV5BMjE0MzEwNDUxNV5BMl5BanBnXkFtZTcwNTE1MDAzOQ@@._V1_.jpg",
                          "height": 271,
                          "width": 186
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt8613070",
              "titleText": {
                "text": "Portrait of a Lady on Fire",
                "isOriginalTitle": false
              },
              "originalTitleText": {
                "text": "Portrait de la jeune fille en feu",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2019,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 2,
                "day": 14,
                "year": 2020,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm4065171201",
                "url": "https://m.media-amazon.com/images/M/MV5BZjJlYWJlYmMtNjMyMS00ZDgxLTlmNjAtOTJhMzBiZWM5N2VmXkEyXkFqcGc@._V1_.jpg",
                "height": 2945,
                "width": 2000
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm4374524",
                        "nameText": {
                          "text": "Noémie Merlant"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm3226099969",
                          "url": "https://m.media-amazon.com/images/M/MV5BZTNkMDE5YzYtN2I4OS00OGY3LWJlMTYtODJkMjEwNWQxMGZkXkEyXkFqcGc@._V1_.jpg",
                          "height": 859,
                          "width": 684
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm1194748",
                        "nameText": {
                          "text": "Adèle Haenel"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm4269521152",
                          "url": "https://m.media-amazon.com/images/M/MV5BMjE5NDU2OTc1OV5BMl5BanBnXkFtZTcwNjE3MDAzNQ@@._V1_.jpg",
                          "height": 2048,
                          "width": 1462
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm4714676",
                        "nameText": {
                          "text": "Luàna Bajrami"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm3891951360",
                          "url": "https://m.media-amazon.com/images/M/MV5BNWRkOThmMTItMjQxNi00MjhhLWE5Y2EtNDYzNmYwOTY2MzJhXkEyXkFqcGc@._V1_.jpg",
                          "height": 810,
                          "width": 1920
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt33474179",
              "titleText": {
                "text": "Firebreak",
                "isOriginalTitle": false
              },
              "originalTitleText": {
                "text": "Cortafuego",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2026,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 2,
                "day": 20,
                "year": 2026,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [
                  {
                    "id": "internet",
                    "text": "internet"
                  }
                ],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm602987778",
                "url": "https://m.media-amazon.com/images/M/MV5BZmMyMWFmYjMtY2Y3ZS00MTBmLWI1NWQtZTMxMzdmN2Y4ZDYzXkEyXkFqcGc@._V1_.jpg",
                "height": 1350,
                "width": 1080
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm3177382",
                        "nameText": {
                          "text": "Belén Cuesta"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2064254976",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTUyYjk4MTYtOThlMy00NzZlLTlmOGMtNjFmYjgyYjQxMTEzXkEyXkFqcGc@._V1_.jpg",
                          "height": 1465,
                          "width": 1000
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm1017221",
                        "nameText": {
                          "text": "Diana Gómez"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm37511424",
                          "url": "https://m.media-amazon.com/images/M/MV5BOGE4YjE2MTktZDg2My00MDM5LThmMjMtZTk2YWQ1MWY4ZGUzXkEyXkFqcGc@._V1_.jpg",
                          "height": 5184,
                          "width": 3456
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0299078",
                        "nameText": {
                          "text": "Joaquín Furriel"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2628264448",
                          "url": "https://m.media-amazon.com/images/M/MV5BZjQ2YjU1NWUtNDQxYy00NmU4LTk5YWQtNjhkZTYyMDA1M2YxXkEyXkFqcGc@._V1_.jpg",
                          "height": 430,
                          "width": 704
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt0106912",
              "titleText": {
                "text": "Fire in the Sky",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Fire in the Sky",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 1993,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 3,
                "day": 12,
                "year": 1993,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm4095546368",
                "url": "https://m.media-amazon.com/images/M/MV5BYzdhNzkyZWItYWJhNi00YmNhLWFiZGMtNGRkNmYwYWYwYmQyXkEyXkFqcGc@._V1_.jpg",
                "height": 1748,
                "width": 1200
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0000665",
                        "nameText": {
                          "text": "D.B. Sweeney"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm707744513",
                          "url": "https://m.media-amazon.com/images/M/MV5BNzgxNjZiZWEtYjI1Yy00ZDM5LTlhMmEtZmY1NjExNGRmYmMwXkEyXkFqcGc@._V1_.jpg",
                          "height": 2991,
                          "width": 1990
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0001598",
                        "nameText": {
                          "text": "Robert Patrick"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm3859844610",
                          "url": "https://m.media-amazon.com/images/M/MV5BNzAwNGRlMzYtMWIxNS00ZDJkLWEzZDEtOGJkN2M1NGM4MmVhXkEyXkFqcGc@._V1_.jpg",
                          "height": 2868,
                          "width": 1320
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0001729",
                        "nameText": {
                          "text": "Craig Sheffer"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2915080704",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTU5MzE3NzkzNV5BMl5BanBnXkFtZTYwNjk5MDcy._V1_.jpg",
                          "height": 570,
                          "width": 450
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt8212958",
              "titleText": {
                "text": "Fire Will Come",
                "isOriginalTitle": false
              },
              "originalTitleText": {
                "text": "O que arde",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2019,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 10,
                "day": 30,
                "year": 2020,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [
                  {
                    "id": "internet",
                    "text": "internet"
                  }
                ],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm2307757313",
                "url": "https://m.media-amazon.com/images/M/MV5BNjNmNjFlYTAtMzY5YS00OGYyLWEyZTMtODJkY2E0Y2Y3OWI4XkEyXkFqcGc@._V1_.jpg",
                "height": 4000,
                "width": 2791
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm10715877",
                        "nameText": {
                          "text": "Amador Arias"
                        },
                        "primaryImage": null
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm10715878",
                        "nameText": {
                          "text": "Benedicta Sánchez"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm687309825",
                          "url": "https://m.media-amazon.com/images/M/MV5BZmFjOTk1MmItNDE1Ny00OTEwLTkwNjAtYWQ3YTk2YzQ1YWQ4XkEyXkFqcGc@._V1_.jpg",
                          "height": 1024,
                          "width": 683
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm10972726",
                        "nameText": {
                          "text": "Inazio Abrao"
                        },
                        "primaryImage": null
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt32397726",
              "titleText": {
                "text": "Harry Potter and the Goblet of Fire",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Harry Potter and the Goblet of Fire",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2026,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 2,
                "day": 10,
                "year": 2026,
                "country": {
                  "id": "GB"
                },
                "restriction": null,
                "attributes": [
                  {
                    "id": "internet",
                    "text": "internet"
                  }
                ],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "video",
                "text": "Video",
                "categories": [
                  {
                    "id": "video",
                    "text": "Video",
                    "value": "video"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": "Video"
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm4132363522",
                "url": "https://m.media-amazon.com/images/M/MV5BODY5YTZlZWQtMzNlOC00ZjczLWI3YjktNjk0NmZiNTRiNGM5XkEyXkFqcGc@._V1_.jpg",
                "height": 846,
                "width": 540
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm2685264",
                        "nameText": {
                          "text": "Cush Jumbo"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm4046900993",
                          "url": "https://m.media-amazon.com/images/M/MV5BMjcyY2IyYzgtYjgwMC00MGFkLTk4NmItYTcwNDBjYThmMmE0XkEyXkFqcGc@._V1_.jpg",
                          "height": 6249,
                          "width": 4166
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm7391230",
                        "nameText": {
                          "text": "Danusia Samal"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm3702541312",
                          "url": "https://m.media-amazon.com/images/M/MV5BYzg3MDM1Y2UtODcxNy00ODJkLThkY2ItZDhlZGFjZWY4YjUzXkEyXkFqcGc@._V1_.jpg",
                          "height": 600,
                          "width": 399
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm4358535",
                        "nameText": {
                          "text": "Claire Morgan"
                        },
                        "primaryImage": null
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt28078628",
              "titleText": {
                "text": "Soul on Fire",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Soul on Fire",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2025,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 10,
                "day": 10,
                "year": 2025,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm382580226",
                "url": "https://m.media-amazon.com/images/M/MV5BYTVlNDY1OWUtMjFmNy00MjA4LThiNWEtNzRjMGM2MGUzNjZmXkEyXkFqcGc@._V1_.jpg",
                "height": 2866,
                "width": 1934
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm1525807",
                        "nameText": {
                          "text": "Joel Courtney"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm387866881",
                          "url": "https://m.media-amazon.com/images/M/MV5BMzJlODY0OGMtMjNlMi00OThhLTgzZWEtN2JhMjljMzA4MWQ3XkEyXkFqcGc@._V1_.jpg",
                          "height": 1238,
                          "width": 799
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0000513",
                        "nameText": {
                          "text": "William H. Macy"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm1013362688",
                          "url": "https://m.media-amazon.com/images/M/MV5BMjIzOTk5MTAzNV5BMl5BanBnXkFtZTcwNTk0MzMyNw@@._V1_.jpg",
                          "height": 2048,
                          "width": 1483
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm2035952",
                        "nameText": {
                          "text": "DeVon Franklin"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2939169793",
                          "url": "https://m.media-amazon.com/images/M/MV5BN2VhNmQ5N2UtMjZkYy00YzAzLWE3NGQtODgwNjg0NjY3YmY5XkEyXkFqcGc@._V1_.jpg",
                          "height": 2142,
                          "width": 1536
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt0085542",
              "titleText": {
                "text": "Fire and Ice",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Fire and Ice",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 1983,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 8,
                "day": 26,
                "year": 1983,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm1335066369",
                "url": "https://m.media-amazon.com/images/M/MV5BYTJkOGVjY2MtOTRkYi00Y2Q1LThjNDQtMmQ1ZWY0MzJiYTVhXkEyXkFqcGc@._V1_.jpg",
                "height": 1837,
                "width": 1240
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0636278",
                        "nameText": {
                          "text": "Randy Norton"
                        },
                        "primaryImage": null
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0495021",
                        "nameText": {
                          "text": "Cynthia Leake"
                        },
                        "primaryImage": null
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0762080",
                        "nameText": {
                          "text": "Steve Sandor"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm1072152832",
                          "url": "https://m.media-amazon.com/images/M/MV5BNTQ0MDMyODAxMF5BMl5BanBnXkFtZTgwODc5MTM0MjE@._V1_.jpg",
                          "height": 375,
                          "width": 500
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt0107206",
              "titleText": {
                "text": "In the Line of Fire",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "In the Line of Fire",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 1993,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 7,
                "day": 9,
                "year": 1993,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm1473841920",
                "url": "https://m.media-amazon.com/images/M/MV5BYmNiNjNjYmQtZTQzNC00M2I1LThiMDgtNWNmM2VjY2Y3NzQxXkEyXkFqcGc@._V1_.jpg",
                "height": 1492,
                "width": 1000
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0000142",
                        "nameText": {
                          "text": "Clint Eastwood"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2498603776",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTg3MDc0MjY0OV5BMl5BanBnXkFtZTcwNzU1MDAxOA@@._V1_.jpg",
                          "height": 2048,
                          "width": 1517
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0000518",
                        "nameText": {
                          "text": "John Malkovich"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm1860016896",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTcwMDM5ODUwOF5BMl5BanBnXkFtZTYwMzEwOTI4._V1_.jpg",
                          "height": 400,
                          "width": 303
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0000623",
                        "nameText": {
                          "text": "Rene Russo"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm3387386112",
                          "url": "https://m.media-amazon.com/images/M/MV5BMjIyMzc1Njk5N15BMl5BanBnXkFtZTgwMjk2MDkyNzM@._V1_.jpg",
                          "height": 2048,
                          "width": 1365
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt0253556",
              "titleText": {
                "text": "Reign of Fire",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Reign of Fire",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2002,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 7,
                "day": 12,
                "year": 2002,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm1180715264",
                "url": "https://m.media-amazon.com/images/M/MV5BYTFkMGVmZTUtMzcyMC00ZTBkLWExNzAtNTVmYTE3MjIzOTk1XkEyXkFqcGc@._V1_.jpg",
                "height": 1480,
                "width": 992
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0000190",
                        "nameText": {
                          "text": "Matthew McConaughey"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm477213952",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTg0MDc3ODUwOV5BMl5BanBnXkFtZTcwMTk2NjY4Nw@@._V1_.jpg",
                          "height": 2048,
                          "width": 1256
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0000288",
                        "nameText": {
                          "text": "Christian Bale"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm3114052352",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTkxMzk4MjQ4MF5BMl5BanBnXkFtZTcwMzExODQxOA@@._V1_.jpg",
                          "height": 2048,
                          "width": 1363
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0001713",
                        "nameText": {
                          "text": "Izabella Scorupco"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2374671616",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTYyMzM1MDEzMV5BMl5BanBnXkFtZTcwMDEyOTYyMQ@@._V1_.jpg",
                          "height": 235,
                          "width": 168
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt0105665",
              "titleText": {
                "text": "Twin Peaks: Fire Walk with Me",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Twin Peaks: Fire Walk with Me",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 1992,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 8,
                "day": 28,
                "year": 1992,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm1156713984",
                "url": "https://m.media-amazon.com/images/M/MV5BYzJmZGFiMzAtODNhOC00NzAwLWFlMzAtYTQzYmRmYjIwNDgyXkEyXkFqcGc@._V1_.jpg",
                "height": 887,
                "width": 564
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0498247",
                        "nameText": {
                          "text": "Sheryl Lee"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm405641216",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTM1NzYyODA2Nl5BMl5BanBnXkFtZTYwMDc3MDc2._V1_.jpg",
                          "height": 529,
                          "width": 360
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0936403",
                        "nameText": {
                          "text": "Ray Wise"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm3693516544",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTYzNTg0NDU5NF5BMl5BanBnXkFtZTcwNDQ5NTk3MQ@@._V1_.jpg",
                          "height": 400,
                          "width": 316
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0000749",
                        "nameText": {
                          "text": "Mädchen Amick"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2386126080",
                          "url": "https://m.media-amazon.com/images/M/MV5BYzk1ZjU1NGItMDQ2NS00ODU5LWJmZDYtYTRkM2EyOTJhMmY3XkEyXkFqcGc@._V1_.jpg",
                          "height": 2500,
                          "width": 1666
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt4158096",
              "titleText": {
                "text": "Free Fire",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Free Fire",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2016,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 4,
                "day": 21,
                "year": 2017,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm32125184",
                "url": "https://m.media-amazon.com/images/M/MV5BOTk5MzJhNjItZTRlOC00YWRlLTgyYmUtZmZhZjA0NmFmNjE2XkEyXkFqcGc@._V1_.jpg",
                "height": 2074,
                "width": 1400
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm1663205",
                        "nameText": {
                          "text": "Sharlto Copley"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2518365696",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTU1MjU2MzkzNF5BMl5BanBnXkFtZTgwNDIzMjIwMjI@._V1_.jpg",
                          "height": 2048,
                          "width": 1510
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0488953",
                        "nameText": {
                          "text": "Brie Larson"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm330727938",
                          "url": "https://m.media-amazon.com/images/M/MV5BNzU4ODNiYzAtYWNmNy00NzQ2LWJiYTMtYzk0YjU2ODRlZGZmXkEyXkFqcGc@._V1_.jpg",
                          "height": 1080,
                          "width": 1080
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm2309517",
                        "nameText": {
                          "text": "Armie Hammer"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm1645197824",
                          "url": "https://m.media-amazon.com/images/M/MV5BMzI3NTYwMzIxM15BMl5BanBnXkFtZTcwMzI1ODY1NA@@._V1_.jpg",
                          "height": 2048,
                          "width": 1363
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt2543312",
              "titleText": {
                "text": "Halt and Catch Fire",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Halt and Catch Fire",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2014,
                "endYear": 2017
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 6,
                "day": 1,
                "year": 2014,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "tvSeries",
                "text": "TV Series",
                "categories": [
                  {
                    "id": "tv",
                    "text": "TV",
                    "value": "tv"
                  }
                ],
                "canHaveEpisodes": true,
                "isEpisode": false,
                "isSeries": true,
                "displayableProperty": {
                  "value": {
                    "plainText": "TV Series"
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm3581104897",
                "url": "https://m.media-amazon.com/images/M/MV5BZTRkNzQwMjAtMzg5Mi00ZDQwLThmYWYtNmQwMDFiYmIxOWRhXkEyXkFqcGc@._V1_.jpg",
                "height": 2880,
                "width": 2160
              },
              "episodes": {
                "episodes": {
                  "total": 40
                }
              },
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm1195855",
                        "nameText": {
                          "text": "Lee Pace"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2256729601",
                          "url": "https://m.media-amazon.com/images/M/MV5BMWRjYjkxYjctMzUzMi00Mjc1LTkzNmMtNmVkYjUwMzVkMjliXkEyXkFqcGc@._V1_.jpg",
                          "height": 1626,
                          "width": 1323
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm1058940",
                        "nameText": {
                          "text": "Scoot McNairy"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm3663173122",
                          "url": "https://m.media-amazon.com/images/M/MV5BMDQ0ZjgzZDMtOTk2Ni00YTg2LThmMDQtNWIxZjU4ZDRkZjM4XkEyXkFqcGc@._V1_.jpg",
                          "height": 6720,
                          "width": 4480
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm4496875",
                        "nameText": {
                          "text": "Mackenzie Davis"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm219772929",
                          "url": "https://m.media-amazon.com/images/M/MV5BNzcwZTQ2MmYtYzE5Ny00ZmFiLWFhZjMtMGU2OTk0ZmFjZTQxXkEyXkFqcGc@._V1_CR641,0,876,1313_.jpg",
                          "height": 1313,
                          "width": 876
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt0944947",
              "titleText": {
                "text": "Game of Thrones",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Game of Thrones",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 2011,
                "endYear": 2019
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 4,
                "day": 17,
                "year": 2011,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "tvSeries",
                "text": "TV Series",
                "categories": [
                  {
                    "id": "tv",
                    "text": "TV",
                    "value": "tv"
                  }
                ],
                "canHaveEpisodes": true,
                "isEpisode": false,
                "isSeries": true,
                "displayableProperty": {
                  "value": {
                    "plainText": "TV Series"
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm2903373057",
                "url": "https://m.media-amazon.com/images/M/MV5BMTNhMDJmNmYtNDQ5OS00ODdlLWE0ZDAtZTgyYTIwNDY3OTU3XkEyXkFqcGc@._V1_.jpg",
                "height": 824,
                "width": 550
              },
              "episodes": {
                "episodes": {
                  "total": 74
                }
              },
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm3592338",
                        "nameText": {
                          "text": "Emilia Clarke"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm699918848",
                          "url": "https://m.media-amazon.com/images/M/MV5BNjg3OTg4MDczMl5BMl5BanBnXkFtZTgwODc0NzUwNjE@._V1_.jpg",
                          "height": 1394,
                          "width": 929
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0227759",
                        "nameText": {
                          "text": "Peter Dinklage"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm307862016",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTM1MTI5Mzc0MF5BMl5BanBnXkFtZTYwNzgzOTQz._V1_.jpg",
                          "height": 400,
                          "width": 321
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm3229685",
                        "nameText": {
                          "text": "Kit Harington"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm94420224",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTA2NTI0NjYxMTBeQTJeQWpwZ15BbWU3MDIxMjgyNzY@._V1_.jpg",
                          "height": 2048,
                          "width": 1363
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Title",
              "id": "tt0088194",
              "titleText": {
                "text": "Streets of Fire",
                "isOriginalTitle": true
              },
              "originalTitleText": {
                "text": "Streets of Fire",
                "isOriginalTitle": true
              },
              "releaseYear": {
                "__typename": "YearRange",
                "year": 1984,
                "endYear": null
              },
              "releaseDate": {
                "__typename": "ReleaseDate",
                "month": 6,
                "day": 1,
                "year": 1984,
                "country": {
                  "id": "US"
                },
                "restriction": null,
                "attributes": [],
                "displayableProperty": {
                  "qualifiersInMarkdownList": null
                }
              },
              "titleType": {
                "__typename": "TitleType",
                "id": "movie",
                "text": "Movie",
                "categories": [
                  {
                    "id": "movie",
                    "text": "Movie",
                    "value": "movie"
                  }
                ],
                "canHaveEpisodes": false,
                "isEpisode": false,
                "isSeries": false,
                "displayableProperty": {
                  "value": {
                    "plainText": ""
                  }
                }
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm889001216",
                "url": "https://m.media-amazon.com/images/M/MV5BY2YyMmQ5MWMtMzNmNS00NjdlLThkNjAtNmY4NGI2OWRjZWI4XkEyXkFqcGc@._V1_.jpg",
                "height": 1410,
                "width": 936
              },
              "episodes": null,
              "series": null,
              "principalCredits": [
                {
                  "credits": [
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0001595",
                        "nameText": {
                          "text": "Michael Paré"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm1431748096",
                          "url": "https://m.media-amazon.com/images/M/MV5BNDAzNDQxNjI1OF5BMl5BanBnXkFtZTcwMjA1OTE3NQ@@._V1_.jpg",
                          "height": 2048,
                          "width": 1365
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0000178",
                        "nameText": {
                          "text": "Diane Lane"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm3945048577",
                          "url": "https://m.media-amazon.com/images/M/MV5BNTM5YTg2YzUtNjBlMC00NzUxLTljYTktNWQxNzE4YTk4NGRhXkEyXkFqcGc@._V1_.jpg",
                          "height": 854,
                          "width": 1280
                        }
                      }
                    },
                    {
                      "name": {
                        "__typename": "Name",
                        "id": "nm0001548",
                        "nameText": {
                          "text": "Rick Moranis"
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm119967232",
                          "url": "https://m.media-amazon.com/images/M/MV5BMTY5MTM4NTY0OF5BMl5BanBnXkFtZTcwMjA0NTgwMw@@._V1_.jpg",
                          "height": 2048,
                          "width": 1962
                        }
                      }
                    }
                  ]
                }
              ]
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Name",
              "id": "nm3997740",
              "nameText": {
                "text": "Kristi Noem"
              },
              "primaryImage": {
                "__typename": "Image",
                "id": "rm713134082",
                "url": "https://m.media-amazon.com/images/M/MV5BOTg2MWJiZDMtNDM2ZS00N2JjLTg2ZGEtYWE5NGY3MmY5YmUwXkEyXkFqcGc@._V1_.jpg",
                "height": 960,
                "width": 959
              },
              "knownFor": {
                "edges": [
                  {
                    "node": {
                      "title": {
                        "__typename": "Title",
                        "id": "tt26350446",
                        "titleText": {
                          "text": "The Missing and Murdered: A Ride of Remembrance",
                          "isOriginalTitle": true
                        },
                        "originalTitleText": {
                          "text": "The Missing and Murdered: A Ride of Remembrance",
                          "isOriginalTitle": true
                        },
                        "releaseYear": {
                          "__typename": "YearRange",
                          "year": 2020,
                          "endYear": null
                        },
                        "releaseDate": {
                          "__typename": "ReleaseDate",
                          "month": 1,
                          "day": 30,
                          "year": 2020,
                          "country": {
                            "id": "US"
                          },
                          "restriction": null,
                          "attributes": [
                            {
                              "id": "internet",
                              "text": "internet"
                            }
                          ],
                          "displayableProperty": {
                            "qualifiersInMarkdownList": null
                          }
                        },
                        "titleType": {
                          "__typename": "TitleType",
                          "id": "short",
                          "text": "Short",
                          "categories": [
                            {
                              "id": "movie",
                              "text": "Movie",
                              "value": "movie"
                            }
                          ],
                          "canHaveEpisodes": false,
                          "isEpisode": false,
                          "isSeries": false,
                          "displayableProperty": {
                            "value": {
                              "plainText": "Short"
                            }
                          }
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm2965189121",
                          "url": "https://m.media-amazon.com/images/M/MV5BODE2OGUzYzktYjZkMy00MTZkLTk5NDAtZjQ3ZjA5YmRlNjM2XkEyXkFqcGc@._V1_.jpg",
                          "height": 5470,
                          "width": 3540
                        },
                        "ratingsSummary": {
                          "aggregateRating": null
                        }
                      },
                      "credit": {
                        "__typename": "Crew",
                        "category": {
                          "id": "camera_department",
                          "text": "Camera and Electrical Department"
                        }
                      }
                    }
                  }
                ]
              }
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Name",
              "id": "nm10257924",
              "nameText": {
                "text": "Montell Douglas"
              },
              "primaryImage": null,
              "knownFor": {
                "edges": [
                  {
                    "node": {
                      "title": {
                        "__typename": "Title",
                        "id": "tt12361974",
                        "titleText": {
                          "text": "Zack Snyder's Justice League",
                          "isOriginalTitle": true
                        },
                        "originalTitleText": {
                          "text": "Zack Snyder's Justice League",
                          "isOriginalTitle": true
                        },
                        "releaseYear": {
                          "__typename": "YearRange",
                          "year": 2021,
                          "endYear": null
                        },
                        "releaseDate": {
                          "__typename": "ReleaseDate",
                          "month": 3,
                          "day": 18,
                          "year": 2021,
                          "country": {
                            "id": "US"
                          },
                          "restriction": null,
                          "attributes": [
                            {
                              "id": "internet",
                              "text": "internet"
                            }
                          ],
                          "displayableProperty": {
                            "qualifiersInMarkdownList": null
                          }
                        },
                        "titleType": {
                          "__typename": "TitleType",
                          "id": "movie",
                          "text": "Movie",
                          "categories": [
                            {
                              "id": "movie",
                              "text": "Movie",
                              "value": "movie"
                            }
                          ],
                          "canHaveEpisodes": false,
                          "isEpisode": false,
                          "isSeries": false,
                          "displayableProperty": {
                            "value": {
                              "plainText": ""
                            }
                          }
                        },
                        "primaryImage": {
                          "__typename": "Image",
                          "id": "rm323864577",
                          "url": "https://m.media-amazon.com/images/M/MV5BNDA0MzM5YTctZTU2My00NGQ5LWE2NTEtNDM0MjZmMDBkOTZkXkEyXkFqcGc@._V1_.jpg",
                          "height": 3000,
                          "width": 2025
                        },
                        "ratingsSummary": {
                          "aggregateRating": 7.9
                        }
                      },
                      "credit": {
                        "__typename": "Crew",
                        "category": {
                          "id": "stunts",
                          "text": "Stunts"
                        }
                      }
                    }
                  }
                ]
              }
            }
          }
        },
        {
          "node": {
            "entity": {
              "__typename": "Name",
              "id": "nm3407618",
              "nameText": {
                "text": "The Chicago Fire"
              },
              "primaryImage": null,
              "knownFor": {
                "edges": []
              }
            }
          }
        }
      ]
    }
  }
}

💡 提示:为简化展示,列表类数据样例仅保留 1-2 条记录,实际返回条数以接口响应为准。