query($order: MyFavoriteOrder!, $type: MyFavoriteQueryAllowedType!, $pagination: PageInput!)
{
memberFavorite(orderBy: $order, type: $type, pagination:$pagination) {
nodes {
__typename
... on Video {
id
title
duration
rating
releaseYear
images{
url
}
mezzanines {
id
licenses {
userRights {
playable
}
playableTime {
from
to
}
}
}
tags {
autoTags {
type
value
}
manualTags{
type
}
}
}
... on Series {
id
title
images{
url
}
tags {
autoTags {
type
value
}
manualTags{
type
}
}
}
... on Program {
id
title
isOnAir
catchUp {
... on Video{
id
}
}
schedule {
from
to
}
channel {
id
userRights {
playable
downloadable
code
}
}
images{
url
}
tags {
autoTags {
type
value
}
manualTags{
type
}
}
}
}
pageInfo {
page
perPage
total
}
}
}