重要なご案内
スターチャンネル当社ホームページやアプリで配信している「スターチャンネルEX」(https://ex.star-ch.jp/)は、2023年3月31日(金)17時で運営を終了します。
「スターチャンネルEX」は4月1日(土)以降も、Amazon Prime Video チャンネルでご覧いただけます。※ご利用にはAmazonサービスへのご加入・ご登録が必要です。
query($id: ID!,$pagination:PageInput!)
{
video(id: $id){
relatedVideos(pagination:$pagination){
nodes{
__typename
id
title
images{
url
}
mezzanines {
id
}
tags{
autoTags{
value
type
}
manualTags{
type
}
}
}
pageInfo{
page
perPage
total
}
}
}
}
query($id:ID!,$pagination:PageInput!)
{
video(id: $id){
recommendation(pagination:$pagination) {
nodes{
... on Program{
__typename
id
title
channel {
id
}
images {
url
}
tags{
autoTags{
value
type
}
manualTags{
type
}
}
}
... on Series{
__typename
id
title
images {
url
}
tags{
autoTags{
value
type
}
manualTags{
type
}
}
}
... on Video{
__typename
id
title
images {
url
width
height
}
mezzanines {
id
}
tags{
autoTags{
value
type
}
manualTags{
type
}
}
}
}
pageInfo{
page
perPage
total
}
}
}
}