Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts Approved-by: Linus Flood
22 lines
334 B
TypeScript
22 lines
334 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const CurrentFooterSocialMedia = gql`
|
|
fragment CurrentFooterSocialMedia on CurrentFooter {
|
|
social_media {
|
|
title
|
|
facebook {
|
|
href
|
|
title
|
|
}
|
|
instagram {
|
|
href
|
|
title
|
|
}
|
|
twitter {
|
|
href
|
|
title
|
|
}
|
|
}
|
|
}
|
|
`
|