Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
14 lines
197 B
TypeScript
14 lines
197 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const Navigation = gql`
|
|
fragment Navigation on CurrentFooter {
|
|
navigation {
|
|
links {
|
|
href
|
|
title
|
|
}
|
|
title
|
|
}
|
|
}
|
|
`
|