Files
web/lib/graphql/Query/HotelPage/HotelPageUrl.graphql

13 lines
250 B
GraphQL

#import "../../Fragments/System.graphql"
query GetHotelPageUrl($locale: String!, $hotelId: String!) {
all_hotel_page(locale: $locale, where: { hotel_page_id: $hotelId }) {
items {
url
system {
...System
}
}
}
}