Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
20 lines
343 B
TypeScript
20 lines
343 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
import { Contact } from "../Contact.graphql"
|
|
|
|
export const ContactAside = gql`
|
|
fragment ContactAside on CurrentBlocksPageAsideContact {
|
|
contact {
|
|
contactConnection {
|
|
edges {
|
|
node {
|
|
...Contact
|
|
}
|
|
}
|
|
totalCount
|
|
}
|
|
}
|
|
}
|
|
${Contact}
|
|
`
|