query-e77021e5b95a1a7256e119a2507dcf23
SPARQL endpointyAhoj, pokusil jsem se vložit na Wikidata všechny SPARQL endpointy v České republice. Teda ty, které jsem našel :-).
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#>
SELECT ?item ?itemLabel ?instance ?sparql WHERE {
?item wdt:P31 ?instance.
?item wdt:P5305 ?sparql.
?item wdt:P17 wd:Q213.
SERVICE wikibase:label { bd:serviceParam wikibase:language "cs". }
}
Query found at
graph TD
classDef projected fill:lightgreen;
classDef literal fill:orange;
classDef iri fill:yellow;
v2("?instance"):::projected
v1("?item"):::projected
v3("?sparql"):::projected
c8(["cs"]):::literal
c4(["wd:Q213"]):::iri
c6(["bd:serviceParam"]):::iri
v1 --"wdt:P31"--> v2
v1 --"wdt:P5305"--> v3
v1 --"wdt:P17"--> c4
subgraph s1["http://wikiba.se/ontology#label"]
style s1 stroke-width:4px;
c6 --"wikibase:language"--> c8
end