How to query a video from GraphQL? #18806
-
for example, I can easily query the photo thumbnails: How can I do the same thing with video? |
Beta Was this translation helpful? Give feedback.
Answered by
wennerryle
Nov 6, 2025
Replies: 1 comment
-
fragment ProductInfo on object_Product {
video {
data {
... on asset {
fullpath
}
}
}
}
{
getProduct(id: 2629) {
...ProductInfo
}
}
Ah, that's the way to work with videos.. |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
wennerryle
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment


Ah, that's the way to work with videos..