2019-03-22 10:53:38 +01:00
|
|
|
import gql from 'graphql-tag';
|
|
|
|
|
2019-03-22 13:58:19 +01:00
|
|
|
export const CONFIG = gql`
|
2019-03-22 10:53:38 +01:00
|
|
|
query {
|
2019-03-22 13:58:19 +01:00
|
|
|
config {
|
|
|
|
name,
|
2019-04-03 17:29:03 +02:00
|
|
|
description,
|
2019-11-08 19:37:14 +01:00
|
|
|
registrationsOpen,
|
2019-12-17 12:09:24 +01:00
|
|
|
registrationsWhitelist,
|
2019-11-21 16:07:43 +01:00
|
|
|
demoMode,
|
2019-11-08 19:37:14 +01:00
|
|
|
countryCode,
|
|
|
|
location {
|
|
|
|
latitude,
|
|
|
|
longitude,
|
|
|
|
accuracyRadius
|
2019-11-20 13:49:57 +01:00
|
|
|
},
|
|
|
|
maps {
|
|
|
|
tiles {
|
|
|
|
endpoint,
|
|
|
|
attribution
|
|
|
|
}
|
|
|
|
},
|
|
|
|
geocoding {
|
|
|
|
provider,
|
|
|
|
autocomplete
|
2019-11-08 19:37:14 +01:00
|
|
|
}
|
2019-03-22 10:53:38 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
`;
|