import { gql } from "graphql-tag" import { Video } from "../Video.graphql" export const Video_ContentPage = gql` fragment Video_ContentPage on ContentPageBlocksVideo { __typename video { ...Video } } ${Video} `