14 lines
215 B
GraphQL
14 lines
215 B
GraphQL
#import "../System.graphql"
|
|
|
|
fragment HotelPageLink on HotelPage {
|
|
system {
|
|
...System
|
|
}
|
|
title
|
|
url
|
|
# TODO: Might need to add this if this is needed for hotel pages.
|
|
# web {
|
|
# original_url
|
|
# }
|
|
}
|