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