import { gql } from "graphql-tag" import { AssetSystem } from "./System.graphql" export const Video = gql` fragment Video on Video { sourceConnection { edges { node { url content_type } } } focal_point { x y } captions { is_default language fileConnection { edges { node { url } } } } } ` export const VideoRef = gql` fragment VideoRef on Video { sourceConnection { edges { node { system { ...AssetSystem } } } } } ${AssetSystem} `