e9bd159e98
Use turbopack for dev builds. Remove graphql-tag/loader, replaced by gql`` tag literals instead. Approved-by: Linus Flood
10 lines
190 B
TypeScript
10 lines
190 B
TypeScript
import { gql } from "graphql-tag"
|
|
|
|
export const GetCityPageCount = gql`
|
|
query GetCityPageCount($locale: String!) {
|
|
all_destination_city_page(locale: $locale) {
|
|
total
|
|
}
|
|
}
|
|
`
|