query($keyword:String!, $order:SearchOrder!, $type:SearchType!, $pagination:PageInput!)
{
search(keyword: $keyword, orderBy: $order, type: $type, pagination:$pagination){
nodes {
__typename
... on Program{
id
title
images {
url
}
schedule {
from
to
}
tags{
autoTags{
value
type
}
}
}
... on Series{
id
title
images {
url
}
tags{
autoTags{
value
type
}
manualTags{
type
}
}
}
}
pageInfo {
page
perPage
total
}
}
}