import { gql } from "graphql-tag" export const Video = gql` fragment Video on Video { sourceConnection { edges { node { url content_type } } } poster_image focal_point { x y } captions { is_default language fileConnection { edges { node { url } } } } } `