query($namespace:String!, $pagination:PageInput!)
{
collection(namespace: $namespace){
id
title
namespace
property
collectionItems(pagination:$pagination){
nodes{
... on Linktext{
__typename
id
displayText
link
image{
url
}
}
... on Video{
__typename
id
title
images{
url
}
mezzanines {
id
}
tags{
autoTags{
value
type
}
manualTags{
type
}
}
}
... on Series{
__typename
id
title
originalTitle
images {
url
}
tags{
autoTags{
value
type
}
manualTags{
type
}
}
}
... on Program{
__typename
id
title
originalTitle
channel {
id
}
images {
url
}
tags{
autoTags{
value
type
}
manualTags{
type
}
}
}
}
pageInfo{
page
perPage
total
}
}
}
}