Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
16 lines
284 B
TypeScript
16 lines
284 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const Essentials_CampaignPage = gql`
|
|
fragment Essentials_CampaignPage on CampaignPageBlocksEssentials {
|
|
essentials {
|
|
title
|
|
preamble
|
|
items {
|
|
label
|
|
icon_identifier
|
|
description
|
|
}
|
|
}
|
|
}
|
|
`
|