Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
16 lines
224 B
TypeScript
16 lines
224 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const SocialMedia = gql`
|
|
fragment SocialMedia on Footer {
|
|
social_media {
|
|
links {
|
|
href {
|
|
href
|
|
title
|
|
}
|
|
type
|
|
}
|
|
}
|
|
}
|
|
`
|