accords-library.com/src/graphql/operations/getVideosPreview.graphql
2022-04-02 22:46:37 +02:00

34 lines
552 B
GraphQL

query getVideosPreview {
videos(pagination: { limit: -1 }) {
data {
id
attributes {
uid
title
views
duration
gone
categories {
data {
id
attributes {
short
}
}
}
published_date {
...datePicker
}
channel {
data {
attributes {
uid
title
}
}
}
}
}
}
}