Feature/turbopack * . * . * pin import-in-the-middle * update marker * revert back to using *.graphql.ts 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
|
|
}
|
|
}
|
|
`
|