accords-library.com/src/graphql/operations/getVideoChannel.graphql
2022-04-03 10:34:21 +02:00

37 lines
757 B
GraphQL

query getVideoChannel($channel: String) {
videoChannels(filters: { uid: { eq: $channel } }) {
data {
attributes {
uid
title
subscribers
videos(pagination: { limit: -1 }) {
data {
id
attributes {
uid
title
views
duration
gone
categories {
data {
id
attributes {
short
}
}
}
published_date {
year
month
day
}
}
}
}
}
}
}
}