Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
19 lines
244 B
TypeScript
19 lines
244 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const SysAsset = gql`
|
|
fragment SysAsset on SysAsset {
|
|
content_type
|
|
description
|
|
dimension {
|
|
height
|
|
width
|
|
}
|
|
metadata
|
|
system {
|
|
uid
|
|
}
|
|
title
|
|
url
|
|
}
|
|
`
|