awakenting / my-sparql-queries

This is a collection of SPARQL queries that I tried in the Wikidata Query Service (https://query.wikidata.org/)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

my-sparql-queries

This is a collection of SPARQL queries that I tried in the Wikidata Query Service

You can copy them and try them out directly on https://query.wikidata.org/

Resources on SPARQL

Queries

  • List of german schools with coordinates:
SELECT ?school ?schoolLabel ?coordinates
WHERE {
  ?school wdt:P31/wdt:P279* wd:Q3914 .
  ?school wdt:P17 wd:Q183 .
  OPTIONAL {?school wdt:P625 ?coordinates .}
  SERVICE wikibase:label { bd:serviceParam wikibase:language "[AUTO_LANGUAGE],de" }
}

About

This is a collection of SPARQL queries that I tried in the Wikidata Query Service (https://query.wikidata.org/)