query($id:ID!,$order:GenreItemOrder!,$type:GenreItemType!,$pagination:PageInput!)
{
genre(id:$id) {
id
name
genreItems(orderBy:$order,type:$type,pagination:$pagination){
nodes{
... on Program{
id
title
channel {
id
}
images {
url
}
schedule {
from
to
}
tags{
autoTags{
value
type
}
manualTags{
type
}
}
}
... on Series{
id
title
images {
url
}
tags{
autoTags{
value
type
}
manualTags{
type
}
}
}
... on Video{
id
title
images {
url
}
mezzanines {
id
}
tags{
autoTags{
value
type
}
manualTags{
type
}
}
}
}
pageInfo{
page
perPage
total
}
}
}
}