mobilizon/js/src/graphql/config.ts
Thomas Citharel a53100ef6e
Added a demo mode to show or hide instance warnings that data is deleted
Signed-off-by: Thomas Citharel <tcit@tcit.fr>
2019-11-21 16:07:43 +01:00

29 lines
379 B
TypeScript

import gql from 'graphql-tag';
export const CONFIG = gql`
query {
config {
name,
description,
registrationsOpen,
demoMode,
countryCode,
location {
latitude,
longitude,
accuracyRadius
},
maps {
tiles {
endpoint,
attribution
}
},
geocoding {
provider,
autocomplete
}
}
}
`;