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
}
}
}
}