query($pagination: PageInput!)
{
futureLineUp {
futureLineUpItems(pagination: $pagination){
nodes {
... on Video {
__typename
id
title
images{
url
}
mezzanines {
id
}
playableTime {
from
to
}
tags {
manualTags{
type
}
}
}
}
pageInfo {
page
perPage
total
}
}
}
}