19 lines
334 B
GraphQL
19 lines
334 B
GraphQL
#import "../Fragments/Alert.graphql"
|
|
|
|
query GetSiteConfig($locale: String!) {
|
|
all_site_config(limit: 1, locale: $locale) {
|
|
items {
|
|
sitewide_alert {
|
|
booking_widget_disabled
|
|
alertConnection {
|
|
edges {
|
|
node {
|
|
...Alert
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|