query-103018cbc083af0b615fee97aec46694
Query to see a map or a timeline of the organizations use
Use at
- https://query.wikidata.org/sparql
PREFIX wikibase: <http://wikiba.se/ontology#>
PREFIX wdt: <http://www.wikidata.org/prop/direct/>
PREFIX wd: <http://www.wikidata.org/entity/>
PREFIX bd: <http://www.bigdata.com/rdf#>
#defaultView:Map
# Can be seen as a timeline too.
SELECT ?item ?itemLabel ?date ?loc {
wd:Q4158548 wdt:P355* ?item.
?item wdt:P571 ?date.
?item wdt:P625 ?loc
SERVICE wikibase:label {bd:serviceParam wikibase:language "en" }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?date"):::projected
v1("?item"):::projected
v3("?loc"):::projected
c1(["wd:Q4158548"]):::iri
c6(["bd:serviceParam"]):::iri
c8(["en"]):::literal
c1 --"wdt:P355"--> v1
v1 --"wdt:P571"--> v2
v1 --"wdt:P625"--> v3
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end