13 lines
250 B
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
|
|
}
|
|
}
|
|
}
|
|
}
|