17 lines
264 B
TypeScript
17 lines
264 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const System = gql`
|
|
fragment System on EntrySystemField {
|
|
content_type_uid
|
|
locale
|
|
uid
|
|
}
|
|
`
|
|
|
|
export const AssetSystem = gql`
|
|
fragment AssetSystem on SysAssetSystemField {
|
|
content_type_uid
|
|
uid
|
|
}
|
|
`
|