Django
Wagtail CMS
Strawberry GraphQL
Uvicorn
Celery
Redis
Pandas
Jupyter
django-extensions
This code depends on dms-platform. In this repository installation instructions for whole project can be found.
For making graphical queries during development go to localhost:8000/graphiql
. On the right up corner is Documentation for all available queries.
query Country {
countries(filters: {name: {exact: "Iceland"}}) {
id
name
fips10
continent
subregion
countryType
iso2
iso3
wikidataId
}
}
query State {
states(filters: {country: {pk: 146}}) {
id
name
fips
adm1Code
country
stateType
}
}
query Cities {
cities(filters: {country: {pk: 146}}) {
name
point
country
cityType
wikidataId
whosonfirstId
geonamesId
}
}
query Airports {
airports(filters: {state: {pk: 4991}}) {
name
point
airportType
}
}
query BodyofWater {
bodiesOfWater(filters: {bodyOfWaterType: {pk: 2}}){
name
wikidataId
bodyOfWaterType
}
}
query ScientificStations {
scientificStations {
name
geonamesId
point
country
scienceStationType
}
}